Youtube Timeline
Youtube comments on a timeline
什么是Youtube Timeline?
Youtube Timeline是由Awesome Extensions开发的Chrome扩展程序,该扩展的主要功能是“Youtube comments on a timeline”。
扩展截图
下载Youtube Timeline扩展crx文件
下载Youtube Timeline扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This app will show you comments with timestamp right above the timeline. * Excellent performance * Fetching up to 1000 comments per video * Supports all player sizes and window resizing * Supports fullscreen * Popup menu with settings * Loading indicator * Turn on/off button in a player control-bar * Seek video to certain comment by clicking on avatar Does not gather any private/personal information Does not check browsing history Does not work in incognito mode Has access only to youtube.com domain. Safe. Stable. Open sourced.
扩展基本信息
名称 | Youtube Timeline |
ID | jjhifobmdjhlphmilfmemefedpkmhdnb |
官方URL | https://chromewebstore.google.com/detail/youtube-timeline/jjhifobmdjhlphmilfmemefedpkmhdnb |
简介 | Youtube comments on a timeline |
文件大小 | 156 KB |
安装次数 | 72 |
当前版本 | 1.0.4 |
更新时间 | 2023-01-09 |
上架时间 | 2022-01-25 |
评分 | 3.00/5 共2次评分 |
开发者 | Awesome Extensions |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Timeline", "version": "1.0.4", "action": { "default_icon": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "default_popup": "popup\/index.html", "default_title": "Youtube Timeline" }, "description": "Youtube comments on a timeline", "icons": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "author": "Ilya Zaytsev", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "content\/content-script.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "incognito": "not_allowed", "offline_enabled": false, "host_permissions": [ "https:\/\/youtube.com\/" ], "permissions": [ "storage", "tabs" ], "short_name": "YT Timeline" } |