YouTube Bookmarker
Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
什么是YouTube Bookmarker?
YouTube Bookmarker是由bharat7gupta开发的Chrome扩展程序,该扩展的主要功能是“Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc”。
扩展截图
下载YouTube Bookmarker扩展crx文件
下载YouTube Bookmarker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add bookmarks to YouTube videos and get easier access to the bookmarks on subsequent access to those videos. User of this extension can edit/add a meaningful description to each bookmark to make the bookmarks legible and get quicker overview of different important points in a YouTube video.
User can also start playback of video from a bookmark, copy and share link of a bookmark to enable playback from that point of the video and also delete bookmarks if its not needed anymore. All of this from a single extension popup. 扩展基本信息
| 名称 | |
| ID | fnpjllldbpafaicnbgakpokibefgdeim |
| 官方URL | https://chromewebstore.google.com/detail/youtube-bookmarker/fnpjllldbpafaicnbgakpokibefgdeim |
| 简介 | Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc |
| 文件大小 | 45.47 KB |
| 安装次数 | 641 |
| 当前版本 | 1.1 |
| 更新时间 | 2020-03-25 |
| 上架时间 | 2020-03-25 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | bharat7gupta |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Bookmarker",
"version": "1.1",
"description": "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc",
"permissions": [
"storage",
"tabs",
"https:\/\/*.youtube.com\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
"styles.css"
],
"js": [
"contentScript.js",
"common.js"
]
}
],
"web_accessible_resources": [
"icons\/bookmark.png",
"icons\/edit.png",
"icons\/play.png",
"icons\/copy-link.png",
"icons\/delete.png",
"icons\/save.png"
],
"browser_action": {
"default_icon": {
"16": "icons\/youtube-bookmarker-32.png",
"24": "icons\/youtube-bookmarker-32.png",
"32": "icons\/youtube-bookmarker-32.png"
},
"default_title": "YouTube Bookmarker",
"default_popup": "popup.html"
},
"manifest_version": 2
} | |