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"
            ]
        }
    ]
}