Youtube Time Marks

Reads Youtube description and creates video time marks.

Vad är Youtube Time Marks?

Youtube Time Marks är en Chrome-tillägg utvecklad av RepoGamesStudio, och dess huvudfunktion är "Reads Youtube description and creates video time marks.".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube Time Marks-förlängningens CRX-fil

Ladda ner Youtube Time Marks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
Beskrivning Reads Youtube description and creates video time marks.
Filstorlek 12.05 KB
Antal Installationer 11
Aktuell Version 0.0.3
Senast Uppdaterad 2018-06-30
Publiceringsdatum 2018-06-30
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare RepoGamesStudio
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.facebook.com/RepoGames/
Hjälpsida URL https://www.facebook.com/RepoGames/
Stödda Språk 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"
    }
}