TubeMark
Bookmark and take notes on YouTube timeline.
Co to jest TubeMark?
TubeMark to rozszerzenie Chrome opracowane przez chaosifier, a jego główną funkcją jest „Bookmark and take notes on YouTube timeline.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TubeMark
Pobierz pliki rozszerzeń TubeMark 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
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
Oficjalny URL | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
Opis | Bookmark and take notes on YouTube timeline. |
Rozmiar pliku | 91.5 KB |
Liczba instalacji | 22 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2020-11-17 |
Data Publikacji | 2020-11-13 |
Ocena | 3.25/5 Łącznie 4 Oceny |
Deweloper | chaosifier |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/chaosifier/TubeMark |
Adres URL Strony Pomocy | https://github.com/chaosifier/TubeMark/issues |
Adres URL Strony Polityki Prywatności | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TubeMark", "description": "Bookmark and take notes on YouTube timeline.", "version": "1.0.1", "author": "Sagar Dahal", "browser_action": { "default_icon": "ic_launcher.png", "default_title": "TubeMark" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "256": "ic_launcher.png" }, "web_accessible_resources": [ "mainPage.html" ] } |