TubeMark
Bookmark and take notes on YouTube timeline.
什么是TubeMark?
TubeMark是由chaosifier开发的Chrome扩展程序,该扩展的主要功能是“Bookmark and take notes on YouTube timeline.”。
扩展截图
下载TubeMark扩展crx文件
下载TubeMark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
扩展基本信息
名称 | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
官方URL | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
简介 | Bookmark and take notes on YouTube timeline. |
文件大小 | 91.5 KB |
安装次数 | 22 |
当前版本 | 1.0.1 |
更新时间 | 2020-11-17 |
上架时间 | 2020-11-13 |
评分 | 3.25/5 共4次评分 |
开发者 | chaosifier |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/chaosifier/TubeMark |
帮助页面URL | https://github.com/chaosifier/TubeMark/issues |
隐私政策页面URL | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
支持的语言 | 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" ] } |