Video Resumer

Automatically resumes YouTube videos from where you played them last.

Was ist Video Resumer?

Video Resumer ist eine Chrome-Erweiterung, die von Appteligent LTD. entwickelt wurde, und ihr Hauptmerkmal ist "Automatically resumes YouTube videos from where you played them last.".

Erweiterungsscreenshots

screenshot
screenshot

Video Resumer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Video Resumer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Without this extension, for example, when you click through YouTube videos, back and forth, they always start from the beginning, even those, you left watched half way through. No more. With this extension, previously watched videos will resume from where you left them at. Even if you restart your browser.

Version 1.2.1, 1.2.2 fix playback issues with updated YouTube interface.

Version 1.2.0 brings additional options, such as considering a video finished if only a few seconds remain on it and expiring older videos.

Version 1.1 and up now handles YouTube videos, posted on other websites.                    

Grundlegende Informationen zur Erweiterung

Name Video Resumer Video Resumer
ID bongjkoajofkfpofginnhecihgaeldpe
Offizielle URL https://chromewebstore.google.com/detail/video-resumer/bongjkoajofkfpofginnhecihgaeldpe
Beschreibung Automatically resumes YouTube videos from where you played them last.
Dateigröße 20.69 KB
Installationsanzahl 44,553
Aktuelle Version 1.2.2
Letztes Update 2014-02-06
Veröffentlichungsdatum 2014-02-05
Bewertung 4.03/5 Insgesamt 343 Bewertungen
Entwickler Appteligent LTD.
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Resumer",
    "version": "1.2.2",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "content\/options.html",
    "background": {
        "scripts": [
            "content\/settings.js",
            "content\/console.js",
            "content\/chrome-storage.js",
            "content\/tracker.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms"
    ]
}