Youtube Time Marks
Reads Youtube description and creates video time marks.
What is Youtube Time Marks?
Youtube Time Marks is a Chrome extension developed by RepoGamesStudio, and its main feature is "Reads Youtube description and creates video time marks.".
Extension Screenshots
Download Youtube Time Marks Extension CRX File
Download Youtube Time Marks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Usable mostly to long youtube interviews It reads description in the following format: 00:00:00 desc1 00:01:34 desc2 00:01:47 desc3 00:02:44 desc4 ... and creates time marks automatically.
Extension Basic Information
Name | |
ID | pphlndhfdfilkemppecnknkefjoolibp |
Official URL | https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp |
Description | Reads Youtube description and creates video time marks. |
File Size | 12.05 KB |
Installation Count | 11 |
Current Version | 0.0.3 |
Last Updated | 2018-06-30 |
Publish Date | 2018-06-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | RepoGamesStudio |
[email protected] | |
Payment Type | free |
Extension Website | https://www.facebook.com/RepoGames/ |
Help Page URL | https://www.facebook.com/RepoGames/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Time Marks", "version": "0.0.3", "description": "Reads Youtube description and creates video time marks.", "manifest_version": 2, "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "main.js" ], "run_at": "document_idle", "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |