Video Resumer

Automatically resumes YouTube videos from where you played them last.

Τι είναι το Video Resumer;

Το Video Resumer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Appteligent LTD., και η κύρια λειτουργία του είναι "Automatically resumes YouTube videos from where you played them last.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Resumer

Λήψη αρχείων επέκτασης Video Resumer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Video Resumer Video Resumer
ID bongjkoajofkfpofginnhecihgaeldpe
Επίσημο URL https://chromewebstore.google.com/detail/video-resumer/bongjkoajofkfpofginnhecihgaeldpe
Περιγραφή Automatically resumes YouTube videos from where you played them last.
Μέγεθος Αρχείου 20.69 KB
Αριθμός Εγκαταστάσεων 44,553
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2014-02-06
Ημερομηνία Δημοσίευσης 2014-02-05
Αξιολόγηση 4.03/5 Συνολικά 343 Αξιολογήσεις
Προγραμματιστής Appteligent LTD.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}