Jump Cutter

Watch lectures ~1.5x faster by fast-forwarding long pauses between sentences

Jump Cutterคืออะไร?

Jump Cutter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย WofWca และคุณลักษณะหลักของมันคือ "Watch lectures ~1.5x faster by fast-forwarding long pauses between sentences"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Plays silent parts of videos on the page at a faster speed, or skips them entirely.
Useful for watching lectures, webinars, podcasts, and other unedited videos, where the speakers spend a portion of time on things other than talking.
Can also just control video speed, without skipping silence.
Has hotkeys (keyboard shortcuts).

This is free software licensed under GNU Affero General Public License v3.0 or any later version (AGPL-3.0-or-later).
Source code: https://github.com/WofWca/jumpcutter

Inspired by this video by carykh: https://youtu.be/DQ8orIurGxw                    

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

ชื่อ Jump Cutter Jump Cutter
ID lmppdpldfpfdlipofacekcfleacbbncp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jump-cutter/lmppdpldfpfdlipofacekcfleacbbncp
คำอธิบาย Watch lectures ~1.5x faster by fast-forwarding long pauses between sentences
ขนาดไฟล์ 259 KB
จำนวนการติดตั้ง 13,884
เวอร์ชันปัจจุบัน 1.26.9
อัปเดตครั้งล่าสุด 2023-04-30
วันที่เผยแพร่ 2020-07-22
คะแนน 4.64/5 รวมทั้งหมด 58 คะแนน
ผู้พัฒนา WofWca
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/WofWca/jumpcutter
ภาษาที่รองรับ id,de,en,fr,no,tr,ca,es,hr,lt,pl,pt-BR,sv,ru,uk,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jump Cutter",
    "version": "1.26.9",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "64": "icons\/icon.svg-64.png",
            "128": "icons\/icon-big-padded.svg-128.png"
        }
    },
    "background": {
        "scripts": [
            "background\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/main.js"
            ],
            "all_frames": true,
            "run_at": "document_idle",
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        "content\/SilenceDetectorProcessor.js",
        "content\/VolumeFilterProcessor.js",
        "chunks\/*.js"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            }
        },
        "toggle_enabled": {
            "description": "__MSG_toggleExtension__",
            "suggested_key": {
                "default": "Alt+Shift+X"
            }
        }
    },
    "icons": {
        "64": "icons\/icon.svg-64.png",
        "128": "icons\/icon-big-padded.svg-128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "91.0a1"
        }
    },
    "manifest_version": 2,
    "default_locale": "en"
}