Veep

Keep your videos playback positions in sync across all of your devices and browser restarts.

Co to jest Veep?

Veep to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Keep your videos playback positions in sync across all of your devices and browser restarts.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Veep

Pobierz pliki rozszerzeń Veep w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Veep allows you to watch Youtube videos from where you let them even if you closed the tab, restarted your browser or even used another computer.

In order to synchronize playback positions across all of your devices, you need to be logged into Chrome with the same account and have the sync enabled in the browser settings on every devices.                    

Podstawowe informacje o rozszerzeniu

Nazwa Veep Veep
ID floamojfedahogohlnlakmehjnjbnhkj
Oficjalny URL https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj
Opis Keep your videos playback positions in sync across all of your devices and browser restarts.
Rozmiar pliku 23.13 KB
Liczba instalacji 31
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2016-02-05
Data Publikacji 2016-02-05
Deweloper Unknown
Typ Płatności free
Adres URL Strony Pomocy https://github.com/cGuille/veep
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Veep",
    "description": "Keep your videos playback positions in sync across all of your devices and browser restarts.",
    "version": "1.1.0",
    "icons": {
        "16": "img\/veep-16.png",
        "48": "img\/veep-48.png",
        "128": "img\/veep-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "src\/youtube-storage.js",
                "src\/url-params.js",
                "src\/youtube.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/youtube-storage.js",
            "src\/youtube-cleanup.js",
            "src\/videos-count.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/veep-19.png",
            "38": "img\/veep-38.png"
        },
        "default_popup": "src\/last-videos.html",
        "default_title": "Veep"
    },
    "permissions": [
        "storage"
    ]
}