Youtube Time Marks

Reads Youtube description and creates video time marks.

Wat is Youtube Time Marks?

Youtube Time Marks is een Chrome-extensie ontwikkeld door RepoGamesStudio, en de belangrijkste functie is "Reads Youtube description and creates video time marks.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Youtube Time Marks

Download Youtube Time Marks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
Officiële URL https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
Beschrijving Reads Youtube description and creates video time marks.
Bestandsgrootte 12.05 KB
Aantal Installaties 11
Huidige Versie 0.0.3
Laatst Bijgewerkt 2018-06-30
Publicatiedatum 2018-06-30
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar RepoGamesStudio
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.facebook.com/RepoGames/
Help Pagina-URL https://www.facebook.com/RepoGames/
Ondersteunde Talen 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"
    }
}