Video Speed Controller Experimental

Experimental version of Video Speed Controller

Video Speed Controller Experimentalคืออะไร?

Video Speed Controller Experimental เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chad Bailey และคุณลักษณะหลักของมันคือ "Experimental version of Video Speed Controller"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Speed Controller Experimental

ดาวน์โหลดไฟล์ส่วนขยาย Video Speed Controller Experimental ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This repository houses experimental features which may or may not make it in to the parent project Video Speed Controller.

The purpose of this is to have a place for testing features, ideas, or any change at all in order to get feedback on how the change is working before merging it into the larger parent project. This allows us a controlled way of experimenting without alienating the users who depend on the reliability of this tool.

At any given time this version may be in a broken state, and the reliability is not guaranteed. This is why it is called experimental. If you want the version which is stable and strives to work well for all users all the time, please get Video Speed Controller.

I think I may have made the point clear, but I do think it bears repeating. The goal of this effort is not to fork the parent project and create a "better" version of it, but rather to have a playground for testing out ideas with the expectation of either removing it all together or adding it into the parent project.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video Speed Controller Experimental Video Speed Controller Experimental
ID hechlhgpdpfdikhmacjfnpphbbpcjpek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/video-speed-controller-ex/hechlhgpdpfdikhmacjfnpphbbpcjpek
คำอธิบาย Experimental version of Video Speed Controller
ขนาดไฟล์ 54.31 KB
จำนวนการติดตั้ง 37,671
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2020-03-04
วันที่เผยแพร่ 2020-03-04
คะแนน 4.96/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา Chad Bailey
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ChadBailey/Video-Speed-Controller-Experimental
URL หน้าช่วยเหลือ https://github.com/ChadBailey/Video-Speed-Controller-Experimental/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Controller Experimental",
    "short_name": "videospeed-experimental",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Experimental version of Video Speed Controller",
    "homepage_url": "https:\/\/github.com\/ChadBailey\/Video-Speed-Controller-Experimental",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*",
                "https:\/\/teamtreehouse.com\/*",
                "http:\/\/www.hitbox.tv\/*"
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.css",
        "shadow.css"
    ]
}