Youtube Time Marks

Reads Youtube description and creates video time marks.

Cos'è Youtube Time Marks?

Youtube Time Marks è un'estensione di Chrome sviluppata da RepoGamesStudio, e la sua funzione principale è "Reads Youtube description and creates video time marks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Time Marks

Scarica i file di estensione Youtube Time Marks 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

                        Usable mostly to long youtube interviews
It reads description in the following format:

00:00:00 desc1
00:01:34 desc2
00:01:47 desc3
00:02:44 desc4
...

and creates time marks automatically.                    

Informazioni di Base sull'Estensione

Nome Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
Descrizione Reads Youtube description and creates video time marks.
Dimensione del File 12.05 KB
Conteggio Installazioni 11
Versione Corrente 0.0.3
Ultimo Aggiornamento 2018-06-30
Data di Pubblicazione 2018-06-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore RepoGamesStudio
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.facebook.com/RepoGames/
URL della Pagina di Aiuto https://www.facebook.com/RepoGames/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Time Marks",
    "version": "0.0.3",
    "description": "Reads Youtube description and creates video time marks.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}