Youtube Time Marks

Reads Youtube description and creates video time marks.

Co to jest Youtube Time Marks?

Youtube Time Marks to rozszerzenie Chrome opracowane przez RepoGamesStudio, a jego główną funkcją jest „Reads Youtube description and creates video time marks.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Time Marks

Pobierz pliki rozszerzeń Youtube Time Marks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
Opis Reads Youtube description and creates video time marks.
Rozmiar pliku 12.05 KB
Liczba instalacji 11
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2018-06-30
Data Publikacji 2018-06-30
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper RepoGamesStudio
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.facebook.com/RepoGames/
Adres URL Strony Pomocy https://www.facebook.com/RepoGames/
Obsługiwane Języki 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"
    }
}