富通助手

富通助手

富通助手

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "富通助手",
  "version": "1.0.3",
  "description": "富通助手",
  "author": "ciming",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "<all_urls>",
    "*://*/*",
    "http://*/*",
    "https://*/*",
    "tabs",
    "background",
    "activeTab",
    "unlimitedStorage",
    "storage",
    "identity.email"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "128": "icons/128.png"
    },
    "default_title": "",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "pages/options.html",
  "content_scripts": [
    {
      "js": [
        "js/inject.js"
      ],
      "css": [
        "css/inject.css"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.joinf.com/*"
      ]
    },
    {
      "js": [
        "js/googleTool.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://*.google.com/search*",
        "*://*.google.com.hk/search*",
        "*://*.google.com.tw/search*",
        "*://*.google.com.au/search*",
        "*://*.google.co.jp/search*",
        "*://*.google.co.uk/search*",
        "*://*.google.fr/search*",
        "*://*.google.de/search*",
        "*://*.google.it/search*",
        "*://*.google.nl/search*",
        "*://*.google.ch/search*"
      ]
    },
    {
      "js": [
        "js/joinf.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://*.joinf.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "panel.html",
    "js/content.js",
    "img/*"
  ]
}