WSC Traffic Checker

WSC Traffic Checker

Free extension to get the number of daily and monthly visits to any website

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WSC Traffic Checker",
  "description": "Free extension to get the number of daily and monthly visits to any website",
  "version": "0.0.0.1",
  "browser_action": {
    "default_title": "WSC Traffic Checker",
    "default_icon": "./images/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/icon.png",
    "48": "./images/icon.png",
    "128": "./images/icon.png"
  },
  "background": {
    "scripts": [
      "./js/config.js",
      "./js/jquery.min.js",
      "./js/core.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "https://data.alexa.com/*"
  ]
}