Watched It!
YouTube Extension to keep track of the videos you already watched.
什么是Watched It!?
Watched It!是由webagent开发的Chrome扩展程序,该扩展的主要功能是“YouTube Extension to keep track of the videos you already watched.”。
扩展截图
下载Watched It!扩展crx文件
下载Watched It!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Notice: You need at least Version20+ to use this extension. Current known Bugs: - Only watched videos that are displayed when the site was loaded the first time get removed. If YouTube loads other videos using for example ajax they will be displayed without any changes. V1.2. bug fix for the popup and some smaller issues with the sync. storage. V1.1 The extension is now using sync. storage. Should help you if you are working on multiple systems. Also you can now repress the button to deselect a video. The video will then be removed from your history. V1.0 alpha version - please do not expect anything to work. If you need features, send an email to: [email protected] and it will be implemented. Thanks!
扩展基本信息
名称 | Watched It! |
ID | jfikpanmifikipolnppakfgmjmmldbio |
官方URL | https://chromewebstore.google.com/detail/watched-it/jfikpanmifikipolnppakfgmjmmldbio |
简介 | YouTube Extension to keep track of the videos you already watched. |
文件大小 | 38.06 KB |
安装次数 | 76 |
当前版本 | 1.2 |
更新时间 | 2012-07-29 |
上架时间 | 2012-07-29 |
评分 | 3.00/5 共3次评分 |
开发者 | webagent |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Watched It!", "version": "1.2", "manifest_version": 2, "description": "YouTube Extension to keep track of the videos you already watched.", "permissions": [ "tabs", "http:\/\/www.youtube.com\/", "storage" ], "web_accessible_resources": [ "img\/unwatchedActive1.png", "img\/unwatchedInactive1.png", "img\/watchedActive1.png", "img\/watchedInactive1.png" ], "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ], "css": [ "youtubeStyle.css" ] } ], "background": { "scripts": [ "util.js", "background.js" ] }, "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" } } |