Any Video Resume

Return to last time you stopped any video.

Cos'è Any Video Resume?

Any Video Resume è un'estensione di Chrome sviluppata da https://www.bit01.de, e la sua funzione principale è "Return to last time you stopped any video.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Any Video Resume

Scarica i file di estensione Any Video Resume in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The extension remembers where you last left a video and *resumes* it there. This works for ANY HTML5 video on all common platforms (YouTube, Vimeo, ...). This works even without a logged in user. for each It remembers the last places of videos for a year.

It considers only videos that go at least 60 seconds. It will ignore short videos (intros, promotional videos...). As soon as the last 30 seconds are reached, the video starts from the beginning.                    

Informazioni di Base sull'Estensione

Nome Any Video Resume Any Video Resume
ID nlbiijlalckdjibflknamcbhonniglkl
URL Ufficiale https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl
Descrizione Return to last time you stopped any video.
Dimensione del File 20.34 KB
Conteggio Installazioni 100
Versione Corrente 1.2.0
Ultimo Aggiornamento 2021-11-26
Data di Pubblicazione 2021-11-10
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://www.bit01.de
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bitnulleins/any-video-resume
URL della Pagina di Aiuto https://www.bit01.de/kontakt/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Any Video Resume",
    "version": "1.2.0",
    "description": "Return to last time you stopped any video.",
    "icons": {
        "48": "icons\/logo-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/js\/storage.js",
                ".\/js\/video.js",
                ".\/js\/content.js",
                ".\/js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/logo-48.png",
        "default_popup": ".\/html\/popup.html"
    },
    "permissions": [
        "storage"
    ]
}