Speak Faster

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

Speak Faster là gì?

Speak Faster là một tiện ích mở rộng Chrome được phát triển bởi viktor.vesely.vv, và tính năng chính của nó là "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Speak Faster

Tải xuống các tệp mở rộng Speak Faster dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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...                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
URL Chính Thức https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Mô tả Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
Kích Thước Tệp 66.61 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-05-01
Ngày Phát Hành 2020-05-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển viktor.vesely.vv
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/viktorvesely/speakFaster
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}