Fire Squirrel

Fire Squirrel

Replace a word on a page with another word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fire Squirrel",
  "version": "0.0.0.5",
  "description": "Replace a word on a page with another word.",
  "options_page": "options.html",
  "background": {
    "persistent": false,
    "scripts": [
      "onInstalled.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "findAndReplaceDOMText.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": "icon-96.png",
    "default_title": "Fire Squirrel"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "icon-48.png",
    "96": "icon-96.png",
    "128": "icon-128.png"
  }
}