Speak Faster

Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!

Speak Fasterคืออะไร?

Speak Faster เป็นส่วนขยายของ Chrome ที่พัฒนาโดย viktor.vesely.vv และคุณลักษณะหลักของมันคือ "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Speak Faster

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

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

                        Are you tired of watching videos at normal speed? If yes, then this extension is for you! Speed up your school lectures or skip annoying video ads, the sky is the limit...                    

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

ชื่อ Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
คำอธิบาย Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
ขนาดไฟล์ 66.61 KB
จำนวนการติดตั้ง 74
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-05-01
วันที่เผยแพร่ 2020-05-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา viktor.vesely.vv
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/viktorvesely/speakFaster
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Faster",
    "version": "1.3",
    "description": "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!",
    "manifest_version": 2,
    "icons": {
        "128": "\/assets\/faster-icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/content\/inject.html"
    ],
    "background": {
        "scripts": [
            "\/shared\/msg.js",
            "\/background\/main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "\/popup\/index.html",
        "default_icon": {
            "128": "\/assets\/faster-icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "\/shared\/msg.js",
                "\/content\/change.js",
                "\/content\/position.js",
                "\/content\/main.js"
            ],
            "css": [
                "\/content\/change.css"
            ]
        }
    ]
}