Workflow

Workflow

Bring your company knowledge into the workflow of your people.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.2.4",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "homepage_url": "https://get-workflow.com/",
  "browser_action": {
    "default_icon": "images/19x19.png",
    "default_popup": "popup.html",
    "default_title": "Workflow",
    "scripts": [
      "scripts/popup.js"
    ]
  },
  "icons": {
    "19": "images/19x19.png",
    "48": "images/48x48.png",
    "100": "images/100x100.png",
    "128": "images/128x128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/style.css"
      ],
      "js": [
        "scripts/content-script.js"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "webNavigation"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.get-workflow.com/*"
    ]
  },
  "web_accessible_resources": [
    "images/*",
    "http://fonts.googleapis.com/*",
    "https://fonts.googleapis.com/*"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/; object-src 'self'"
}