新しいタブ改造

新しいタブ改造

Change Newtab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "新しいタブ改造",
  "short_name": "ntm",
  "version": "1.2.3",
  "author": "大日本ペイント帝国海軍省",
  "default_locale": "ja",
  "description": "Change Newtab",
  "icons": {
    "16": "icon16.png",
    "19": "icon19.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.google.co.jp/_/chrome/newtab*"
      ],
      "js": [
        "js.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "all.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "webRequest",
    "*://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "homepage_url": "http://jikkuri.html.xdomain.jp/INPN/other/chrome-extentions/",
  "offline_enabled": true,
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html",
    "open_in_tab": true
  }
}