Hulu Click to Play

Play and pause your show by clicking on the video window itself.

什麼是Hulu Click to Play?

Hulu Click to Play是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Play and pause your show by clicking on the video window itself.”。

擴展截圖

screenshot

下載Hulu Click to Play擴展crx文件

下載Hulu Click to Play擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension lets you click the Hulu video player to play and pause the video.                    

擴展基本資訊

名稱 Hulu Click to Play Hulu Click to Play
ID fpliblacnmibnbjmeeignknploeajhdi
官方網址 https://chromewebstore.google.com/detail/hulu-click-to-play/fpliblacnmibnbjmeeignknploeajhdi
簡介 Play and pause your show by clicking on the video window itself.
檔案大小 6.19 KB
安裝次數 52
目前版本 0.1.0
更新時間 2019-01-16
上架時間 2019-01-15
評分 1.00/5 共 2 次評分
開發者 Unknown
付費類型 free
擴展官網 https://github.com/BobbyMcWho/hulu-click-to-play
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hulu Click to Play",
    "version": "0.1.0",
    "description": "Play and pause your show by clicking on the video window itself.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hulu.com\/*"
            ],
            "js": [
                "js\/hulu.js"
            ]
        }
    ]
}