Chronic Traffic

Chronic Traffic

a Cannabis Industry Traffic Exchange

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chronic Traffic",
  "icons": {
    "128": "128x128.png"
  },
  "description": "a Cannabis Industry Traffic Exchange",
  "version": "2.1.2",
  "browser_action": {
    "default_icon": "19x19.png",
    "default_title": "Quick access to browsing"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "index.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}