URL Stats Extractor

URL Stats Extractor

Shows stats for shortened URLs. Currently: goo.gl

Merlin
Additional files are visible only to premium users

manifest.json


{
"update_url": "https://clients2.google.com/service/update2/crx",

  "name": "URL Stats Extractor",
  "version": "0.7",
  "manifest_version": 2,
  "description": "Shows stats for shortened URLs.  Currently: goo.gl",
//  "homepage_url": "",

  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },

  "default_locale": "en",

  "background": {
//    "persistent": true,
    "scripts": [
      "src/bg/background.js"
    ]
  },

//  "options_page": "src/options_custom/index.html",

  "page_action": {
    "default_icon": "icons/icon-19.png",
    "default_title": "URL Stats Extractor"
//    "default_popup": "src/page_action/page_action.html"
  },

//  "permissions": [
//    "http://*/*",
//    "https://*/*",
//    "file://*/*",
//    "ftp://*/*"
//  ],

  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*",
        "ftp://*/*"
      ],
      "css": [
        "css/tiptip/tipTip.css"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/tiptip/jquery.tipTip.js",
        "src/inject/contentscript.js"
      ],
      "run_at" : "document_idle",
      "all_frames" : true
    }
  ]
}