WebPage Contents Checker

WebPage Contents Checker

Webページ上のコンテンツをチェックする拡張機能です。(It is an extension to check the contents on a Web page.)

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 Contents Checker",
  "description": "Webページ上のコンテンツをチェックする拡張機能です。(It is an extension to check the contents on a Web page.)",
  "version": "1.0.10",
  "icons": {
    "128": "images/icon/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "images/icon/icon_128.png"
    },
    "default_title": "WebPage Content 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"
    }
  ],
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}