Orange Mode

Orange Mode

Browse the web in orange.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Orange Mode",
  "manifest_version": 2,
  "version": "0.1",
  "description": "Browse the web in orange.",
  "browser_action": {},
  "icons": {
    "16": "off.png",
    "48": "on.png",
    "128": "on.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "orange.js"
      ]
    }
  ]
}