松鼠新主页

松鼠新主页

松鼠新主页 将原生新标签页替换为您保存的书签,并提供了多种快捷实用的功能。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "松鼠新主页",
  "description": "松鼠新主页 将原生新标签页替换为您保存的书签,并提供了多种快捷实用的功能。",
  "version": "1.0",
  "permissions": [
    "contextMenus",
    "history",
    "bookmarks",
    "cookies",
    "tabs",
    "http://link.kangchenxi.com/",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/popup.js"
      ],
      "run_at": "document_start"
    }
  ],
  "incognito": "split",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "options_page": "index.html",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "松鼠新主页",
    "default_popup": "views/popup.html"
  }
}