TubeMark
Bookmark and take notes on YouTube timeline.
Wat is TubeMark?
TubeMark is een Chrome-extensie ontwikkeld door chaosifier, en de belangrijkste functie is "Bookmark and take notes on YouTube timeline.".
Extensie Screenshots
Download het CRX-bestand van de extensie TubeMark
Download TubeMark-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
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
Basisinformatie over de Extensie
Naam | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
Officiële URL | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
Beschrijving | Bookmark and take notes on YouTube timeline. |
Bestandsgrootte | 91.5 KB |
Aantal Installaties | 22 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2020-11-17 |
Publicatiedatum | 2020-11-13 |
Beoordeling | 3.25/5 Totaal 4 Beoordelingen |
Ontwikkelaar | chaosifier |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/chaosifier/TubeMark |
Help Pagina-URL | https://github.com/chaosifier/TubeMark/issues |
URL van de Privacybeleid Pagina | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
Ondersteunde Talen | 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" ] } |