Flame

Flame

Run custom scripts and add hotkeys to any site

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "2.0.24",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "bower_components/mousetrap/mousetrap.min.js",
        "scripts/contentscript.js"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "clipboardWrite",
    "browsingData",
    "storage",
    "bookmarks",
    "<all_urls>"
  ]
}