iNewTab

iNewTab

This is My iNewTab!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iNewTab",
  "version": "1.0.0",
  "description": "This is My iNewTab!",
  "browser_action": {
    "default_icon": "img/icon512.png",
    "default_popup": "popup.html"
  },
  "homepage_url": "https://github.com/MacroBorn/iNewTab",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "This is My iNewTab!"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-1.8.3.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "default_locale": "en",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  }
}