YouTube Resume
YouTube Resume remebers when you stop watching a video and will resume where you let go.
What is YouTube Resume?
YouTube Resume is a Chrome extension developed by natanielmp, and its main feature is "YouTube Resume remebers when you stop watching a video and will resume where you let go.".
Download YouTube Resume Extension CRX File
Download YouTube Resume 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
Automatically resume YouTube videos - no user interface. This extension is not necessary if you have view log enabled.
Extension Basic Information
Name | |
ID | lpejgpbegaodlimmjkkfcmhmbkkibccf |
Official URL | https://chrome.google.com/webstore/detail/youtube-resume/lpejgpbegaodlimmjkkfcmhmbkkibccf |
Description | YouTube Resume remebers when you stop watching a video and will resume where you let go. |
File Size | 16.67 KB |
Installation Count | 85 |
Current Version | 0.0.1 |
Last Updated | 2017-05-21 |
Publish Date | 2017-05-21 |
Rating | 3.50/5 Total 2 Ratings |
Developer | natanielmp |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Resume", "version": "0.0.1", "manifest_version": 2, "description": "YouTube Resume remebers when you stop watching a video and will resume where you let go.", "homepage_url": "http:\/\/nataniel.no", "icons": { "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/128.png", "default_title": "YouTube Resume", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "history", "tabs", "storage", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |