PostTrack

PostTrack

PostTrack是一个用于追综帖子有新的消息时发出提醒的插件,可以用于热门帖子的订阅,问题的追综等等。 目前该插件支持的网站有: 知乎、SegmentFault、StackOverflow、Github、CSDN问题板块 贴吧帖子 掘金沸点、掘金用户…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "runtime.js",
      "vendor.js",
      "utils.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon/logo32.png",
    "default_popup": "popup.html",
    "default_title": "PostTrack"
  },
  "content_scripts": [
    {
      "js": [
        "runtime.js",
        "vendor.js",
        "utils.js",
        "cnt.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:8080; object-src 'self'",
  "icons": {
    "16": "images/icon/logo16.png",
    "32": "images/icon/logo32.png",
    "48": "images/icon/logo48.png",
    "64": "images/icon/logo64.png",
    "128": "images/icon/logo128.png"
  },
  "manifest_version": 2,
  "name": "PostTrack",
  "options_page": "popup.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "notifications",
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "version": "1.2.0",
  "web_accessible_resources": [
    "remote/*",
    "js/*",
    "css/*",
    "lib/*",
    "manifest.json",
    "images/*"
  ]
}