Whowatch Hide Item Animation

Whowatch Hide Item Animation

ふわっちのアイテムアニメーションを非表示にできる拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whowatch Hide Item Animation",
  "manifest_version": 2,
  "version": "1.0.1",
  "description": "ふわっちのアイテムアニメーションを非表示にできる拡張機能です。",
  "author": "archives",
  "homepage_url": "https://archives.ga",
  "icons": {
    "16": "images/icon128.png",
    "48": "images/icon128.png",
    "128": "images/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "images/icon128.png"
    },
    "default_title": "Whowatch Hide Item Animation"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.whowatch.tv/*",
        "*://whowatch.tv/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}