Accelo

Accelo

This is the official Chrome Extension for Accelo: accelo.com/chrome-extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Accelo",
  "description": "This is the official Chrome Extension for Accelo: accelo.com/chrome-extension",
  "homepage_url": "https://www.accelo.com/chrome-extension",
  "short_name": "Accelo Chrome Extension",
  "version": "0.3.0",
  "background": {
    "scripts": [
      "node_modules/jquery/dist/jquery.min.js",
      "api.js",
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "accelo_16.png",
    "48": "accelo_48.png",
    "128": "accelo_128.png"
  },
  "permissions": [
    "identity",
    "storage",
    "activeTab",
    "tabs"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "content.html",
    "extension.css",
    "node_modules/jquery/dist/jquery.min.js",
    "contentscript.js"
  ],
  "browser_action": {
    "default_icon": {
      "16": "accelo_16.png",
      "48": "accelo_48.png",
      "128": "accelo_128.png"
    }
  }
}