贴吧雪凛

贴吧雪凛

使用雪凛在贴吧实现切换发帖回帖模式

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "贴吧雪凛",
  "short_name": "tieba-snow",
  "version": "1.0.8",
  "description": "使用雪凛在贴吧实现切换发帖回帖模式",
  "permissions": [
    "cookies",
    "storage",
    "tabs",
    "http://*.baidu.com/",
    "http://127.0.0.1/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://tieba.baidu.com/*"
      ],
      "js": [
        "js/jquery-1.10.2.min.js",
        "js/tiebasnow.js",
        "js/ts-page.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_title": "贴吧雪凛"
  },
  "offline_enabled": false,
  "homepage_url": "http://bbs.4bpa.org/thread-275192-1-1.html"
}