TubeMark
Bookmark and take notes on YouTube timeline.
Hvad er TubeMark?
TubeMark er en Chrome-udvidelse udviklet af chaosifier, og dens hovedfunktion er "Bookmark and take notes on YouTube timeline.".
Udvidelsesskærmbilleder
Download TubeMark-udvidelses-CRX-fil
Download TubeMark-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
Officiel URL | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
Beskrivelse | Bookmark and take notes on YouTube timeline. |
Filstørrelse | 91.5 KB |
Antal Installationer | 22 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2020-11-17 |
Udgivelsesdato | 2020-11-13 |
Bedømmelse | 3.25/5 Samlet 4 Bedømmelser |
Udvikler | chaosifier |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/chaosifier/TubeMark |
Hjælpeside-URL | https://github.com/chaosifier/TubeMark/issues |
URL til Fortrolighedspolitik Side | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
Understøttede Sprog | 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" ] } |