Frame By Frame

Best Frame By Frame Tool. Works with all websites! Move your mouse cursor over video and use keyboard arrows to switch frames.

Что такое Frame By Frame?

Frame By Frame - это расширение Chrome, разработанное Code Charity, и его основная функция - "Best Frame By Frame Tool. Works with all websites! Move your mouse cursor over video and use keyboard arrows to switch frames.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Frame By Frame

Скачайте файлы расширений Frame By Frame в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The Frame By Frame Tool! Use "⇠" and "⇢" keys to switch frames 👌

Features:
 ✓ Shows the current time, duration and number of frames
 ✓ Move frames with "⇠" and "⇢" keys (10 frames while holding down the Shift key)
 ✓ Select a video simply by hovering over it
 ✓ Hide Frame By Frame popup with "i" key 
 
Open Source! 🎈 Check out Frame By Frame's source code and contribute here:
   •  https://github.com/victor-savinov/frame-by-frame

Permissions explained:
  ⭐️ "Read and change all your data on the websites you visit": to be able to connect to and modify frame by frame control of any website that include videos.                    

Основная информация о расширении

Название Frame By Frame Frame By Frame
ID cclnaabdfgnehogonpeddbgejclcjneh
Официальный URL https://chromewebstore.google.com/detail/frame-by-frame/cclnaabdfgnehogonpeddbgejclcjneh
Описание Best Frame By Frame Tool. Works with all websites! Move your mouse cursor over video and use keyboard arrows to switch frames.
Размер файла 355 KB
Количество установок 5,334
Текущая Версия 3.5
Последнее Обновление 2022-08-19
Дата публикации 2020-08-26
Рейтинг 4.21/5 Всего 24 оценок
Разработчик Code Charity
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://improvedtube.com/privacy
Поддерживаемые языки id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Frame By Frame",
    "description": "__MSG_description__",
    "version": "3.5",
    "default_locale": "en",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options-page\/index.html",
    "action": {
        "default_popup": "options-page\/index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "content-scripts\/styles.css"
            ],
            "js": [
                "content-scripts\/core.js",
                "content-scripts\/cursor.js",
                "content-scripts\/events.js",
                "content-scripts\/locale.js",
                "content-scripts\/messages.js",
                "content-scripts\/observer.js",
                "content-scripts\/storage.js",
                "content-scripts\/ui.js",
                "content-scripts\/videos.js",
                "content-scripts\/init.js",
                "content-scripts\/features\/data.js",
                "content-scripts\/features\/events.js",
                "content-scripts\/features\/storage.js",
                "content-scripts\/features\/ui.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "optional_permissions": [
        "downloads"
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "offline_enabled": true
}