WebPage Date Checker

WebPage Date Checker

Webページ上の曜日表記が正しいかチェックする拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebPage Date Checker",
  "description": "Webページ上の曜日表記が正しいかチェックする拡張機能です。",
  "version": "1.0.6",
  "icons": {
    "128": "images/icon/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "images/icon/icon_128.png"
    },
    "default_title": "WebPage Date Checker",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}