TextForma

TextForma

ウェブサイト上にある見たくない単語(NGワード)を覆い隠したり置き換えたりできる拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TextForma",
  "version": "0.1.17",
  "default_locale": "ja",
  "description": "__MSG_description__",
  "permissions": [
    "storage",
    "tabs",
    "contentSettings"
  ],
  "icons": {
    "16": "images/shield-icon16.png",
    "48": "images/shield-icon48.png",
    "128": "images/shield-icon128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "scripts/core.js",
        "scripts/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/shield-icon16.png",
      "48": "images/shield-icon48.png"
    }
  },
  "options_page": "/html/options.html"
}