RMS Chrome

RMS Chrome

Allows free-as-in-freedom in the Google Chrome browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RMS Chrome",
  "icons": {
    "16": "icon16.jpg",
    "32": "icon32.jpg"
  },
  "description": "Allows free-as-in-freedom in the Google Chrome browser.",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}