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
{
  "manifest_version": 2,
  "name": "巴哈姆特-文章過濾工具",
  "description": "過濾巴哈姆特討論區文章的工具。",
  "version": "1.0.7",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_title": "巴哈姆特-文章過濾工具",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*.forum.gamer.com.tw/*",
        "*://m.gamer.com.tw/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{74ae9ced-7ce5-4585-b659-9dce10839b23}"
    }
  }
}