Isolation Translation

Isolation Translation

see the browser through different perspectives

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Isolation Translation",
  "description": "see the browser through different perspectives",
  "version": "0.1",
  "background": {
    "scripts": [
      "hodor.js",
      "demo.js",
      "doge.js",
      "racist.js",
      "grammar.js",
      "reverse.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "findAndReplaceDOMText.js",
        "injection.js"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "web_accessible_resources": [
    "source_maps/jquery-1.10.2.min.map"
  ]
}