淘宝搜券

淘宝搜券

淘宝搜券是一款淘宝优惠券查询助手,当您逛淘宝天猫的时候,所有内部隐藏优惠券会自动现形,点击领券即可下单立减。在领取优惠时,会提醒用户跳转淘客链接,用户允许后才会领取。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "淘宝搜券",
  "version": "1.0.1.3",
  "manifest_version": 2,
  "description": "淘宝搜券是一款淘宝优惠券查询助手,当您逛淘宝天猫的时候,所有内部隐藏优惠券会自动现形,点击领券即可下单立减。在领取优惠时,会提醒用户跳转淘客链接,用户允许后才会领取。",
  "icons": {
    "16": "logos/16.png",
    "48": "logos/48.png",
    "128": "logos/128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "logos/19.png",
      "38": "logos/38.png"
    },
    "default_title": "淘宝搜券",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "contentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    },
    {
      "css": [
        "css/ext-main.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "management",
    "nativeMessaging"
  ],
  "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self'",
  "background": {
    "page": "background.html"
  },
  "web_accessible_resources": [
    "*"
  ]
}