The Webguy Tools

The Webguy Tools

A set of easy to access tools that each webmaster needs!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Webguy Tools",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "A set of easy to access tools that each webmaster needs!",
  "homepage_url": "http://www.sagive.co.il/english/seo-blog/the-webguy-tools/",
  "icons": {
    "16": "icons/webmastertools-16.png",
    "48": "icons/webmaster-toolbox-48.png",
    "128": "icons/webmaster-toolbox-128.png"
  },
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "options_page": "src/options/index.html",
  "browser_action": {
    "default_icon": "icons/webmastertools-19.png",
    "default_title": "Find Tool",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "http://www.sagive.co.il/tools/webmaster-tools/*"
      ],
      "js": [
        "js/jquery/jquery.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "src/override/override.html"
  },
  "permissions": [
    "tabs",
    "https://*/*"
  ]
}