新标签页 - 多桌面

新标签页 - 多桌面

个性化新标签页。壁纸、书签、待办事项列表、PDF转换器、天气、地图、3D地球、Gmail邮件管理、包裹跟踪等免费功能。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "version": "3.1.3",
  "description": "__MSG_description__",
  "default_locale": "zh_CN",
  "homepage_url": "https://3dh.com",
  "author": "3dh.com",
  "browser_action": {
    "default_icon": "images/icon/icon48.png",
    "default_title": "__MSG_extName__"
  },
  "chrome_url_overrides": {
    "newtab": "/dist/index.html"
  },
  "icons": {
    "16": "images/icon/icon16.png",
    "32": "images/icon/icon32.png",
    "48": "images/icon/icon48.png",
    "128": "images/icon/icon128.png"
  },
  "background": {
    "scripts": [
      "js/misc.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "bookmarks",
    "history",
    "contextMenus",
    "tabs",
    "https://*.3dh.com/",
    "https://www.yahoo.com/"
  ],
  "offline_enabled": true,
  "externally_connectable": {
    "matches": [
      "*://3dh.com/*"
    ]
  }
}