Invoke all of the things

Invoke all of the things

Invoke all of things is all about taking control of the websites you visit, or it can be a extremely powerful developer tool.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Invoke all of the things",
  "manifest_version": 2,
  "short_name": "invoke-all-of-the-things",
  "description": "Invoke all of things is all about taking control of the websites you visit, or it can be a extremely powerful developer tool.",
  "author": "Thomas Casey",
  "version": "1.0.2",
  "icons": {
    "16": "icons/icon-16.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "src/js/db.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Invoke all of the things",
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-38.png"
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "pages/options.html",
  "web_accessible_resources": [
    "src/js/db.js",
    "src/js/main.js"
  ],
  "permissions": [
    "activeTab"
  ]
}