Examine source code of 巴哈NO彈幕

Inspect and view changes in 巴哈NO彈幕 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": "巴哈NO彈幕",
  "description": "隱藏/顯示巴哈姆特動畫瘋的彈幕區塊",
  "author": "sdovan",
  "version": "1.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://ani.gamer.com.tw/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/32.png",
    "default_title": "巴哈NO彈幕",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "48": "/icons/48.png",
    "96": "/icons/96.png"
  },
  "commands": {
    "toggle-subtitle-hidden": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "toggle subtitle hidden"
    }
  }
}