Silverstein

Silverstein

Now every Silverstein can have their day. Automatically switches "GS&P" to "SG&P" online. Does same for other brands.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Silverstein",
  "short_name": "SG&P",
  "description": "Now every Silverstein can have their day. Automatically switches \"GS&P\" to \"SG&P\" online. Does same for other brands.",
  "version": "1.1",
  "homepage_url": "https://silversteingoodby.com",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ]
}