So Tab 新搜索

So Tab 新搜索

快速发起搜索,多个引擎自由切换,网页文字和图片可透视——在其他标签查看、编辑,快速将网页图片设为新标签背景

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_appName__",
  "version": "1.0.1",
  "default_locale": "zh_CN",
  "description": "__MSG_appDescription__",
  "chrome_url_overrides": {
    "newtab": "pages/index.html"
  },
  "icons": {
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "icons/icon_128.png"
    },
    "default_title": "So tab",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "scripts": [
      "pages/md5.js",
      "pages/base64.js",
      "pages/jmessage.js",
      "core/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "pages/jquery-min.js",
        "pages/html2canvas.min.js",
        "core/content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "pages/icons/*.png"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "downloads",
    "tabs",
    "clipboardRead",
    "contextMenus",
    "notifications",
    "*://cn.bing.com/*",
    "*://m.baidu.com/*",
    "*://www.google.com/*",
    "*://aa-zz.cn/*"
  ]
}