曜日チェッカー

曜日チェッカー

サイト上の日付の曜日をチェックできます

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "曜日チェッカー",
  "description": "サイト上の日付の曜日をチェックできます",
  "version": "1.0.5",
  "manifest_version": 2,
  "icons": {
    "16": "icons/default.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contents.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}