影片工具

影片工具

拉桿調整影片撥放速度, 設定循環播放, 高畫質設定

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "影片工具",
  "description": "拉桿調整影片撥放速度, 設定循環播放, 高畫質設定",
  "version": "1.2.0",
  "icons": {
    "16": "setting.png",
    "48": "setting.png",
    "128": "setting.png"
  },
  "browser_action": {
    "default_icon": "setting.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "exe.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ]
}