Veep

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

Qu'est-ce que Veep ?

Veep est une extension Chrome développée par Unknown, et sa fonction principale est "Keep your videos playback positions in sync across all of your devices and browser restarts.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Veep

Téléchargez les fichiers d'extension Veep au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Veep Veep
ID floamojfedahogohlnlakmehjnjbnhkj
URL Officiel https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj
Description Keep your videos playback positions in sync across all of your devices and browser restarts.
Taille du Fichier 23.13 KB
Nombre d'Installations 31
Version Actuelle 1.1.0
Dernière Mise à Jour 2016-02-05
Date de Publication 2016-02-05
Développeur Unknown
Type de Paiement free
URL de la Page d'Aide https://github.com/cGuille/veep
Langues Prises en Charge 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"
    ]
}