YouTube Resume
YouTube Resume remebers when you stop watching a video and will resume where you let go.
什么是YouTube Resume?
YouTube Resume是由natanielmp开发的Chrome扩展程序,该扩展的主要功能是“YouTube Resume remebers when you stop watching a video and will resume where you let go.”。
下载YouTube Resume扩展crx文件
下载YouTube Resume扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically resume YouTube videos - no user interface. This extension is not necessary if you have view log enabled.
扩展基本信息
名称 | |
ID | lpejgpbegaodlimmjkkfcmhmbkkibccf |
官方URL | https://chrome.google.com/webstore/detail/youtube-resume/lpejgpbegaodlimmjkkfcmhmbkkibccf |
简介 | YouTube Resume remebers when you stop watching a video and will resume where you let go. |
文件大小 | 16.67 KB |
安装次数 | 85 |
当前版本 | 0.0.1 |
更新时间 | 2017-05-21 |
上架时间 | 2017-05-21 |
评分 | 3.50/5 共2次评分 |
开发者 | natanielmp |
付费类型 | free |
支持的语言 | 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" ] } ] } |