千山新标签页

千山新标签页

千山是一个简洁的新标签页。没有广告、弹窗和冗余信息,千山希望成为通向未知的最短路径。向老朋友致歉:未及时更新隐私授权,插件下线了一周,添麻烦了!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "千山新标签页",
  "version": "1.4.0",
  "description": "千山是一个简洁的新标签页。没有广告、弹窗和冗余信息,千山希望成为通向未知的最短路径。向老朋友致歉:未及时更新隐私授权,插件下线了一周,添麻烦了!",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*.qianshan.co/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon16.png",
    "default_title": "千山:万千世界,尽在眼前",
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fav.ico",
        "bootstrap.min.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.qianshan.co/"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}