Examine source code of 每日省一点

Inspect and view changes in 每日省一点 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "每日省一点",
  "description": "为网上购物的用户提供优惠券,每日省一点,钱包厚一点",
  "version": "1.1",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "static/images/icon.png",
    "default_title": "每日省一点",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "static/images/icon.png",
    "48": "static/images/icon.png",
    "128": "static/images/icon.png"
  },
  "web_accessible_resources": [
    "style/*",
    "js/*",
    "images/*",
    "lib/*",
    "static/*"
  ],
  "content_scripts": [
    {
      "js": [
        "static/js/jquery.min.js",
        "static/js/main.js"
      ],
      "css": [
        "static/css/main.css"
      ],
      "matches": [
        "*://s.taobao.com/*",
        "*://item.taobao.com/item.htm*",
        "*://detail.tmall.com/item.htm*",
        "*://chaoshi.detail.tmall.com/item.htm*",
        "*://detail.tmall.hk/item.htm*",
        "*://detail.tmall.hk/hk/item.htm*",
        "*://s.taobao.com/*",
        "*://item.jd.com/*",
        "*://e.jd.com/*",
        "*://i-item.jd.com/*",
        "*://detail.1688.com/*",
        "*://goods.kaola.com/*",
        "*://goods.kaola.com.hk/*",
        "*://product.suning.com/*",
        "*://detail.vip.com/*",
        "*://product.dangdang.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "*://*/*",
    "https://www.ht.jisuaz.cn/"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "static/js/jquery.min.js",
      "static/js/background.js"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}