Shiftry

Shiftry

NGワードに指定した単語をWebページ上で置換、または削除します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "ja",
  "name": "Shiftry",
  "version": "1.0.1",
  "description": "__MSG_description__",
  "author": "sakux2cookie",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "option.html",
  "permissions": [
    "storage",
    "tabs"
  ]
}