veefeed
Keep track of your YouTube and Twitch subscriptions
什么是veefeed?
veefeed是由fent开发的Chrome扩展程序,该扩展的主要功能是“Keep track of your YouTube and Twitch subscriptions”。
扩展截图
下载veefeed扩展crx文件
下载veefeed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you find yourself following several channels on YouTube and/or Twitch? Do you miss the days when YouTube allowed you to categorize your subscriptions? * Supports YouTube and Twich * Get notified when new videos are uploaded * Auto organize your videos into groups based on patterns * Ignore videos based on patterns * Queue up videos to play when the current video ends All of the features are optional. No need to authenticate or specify your username, just be logged in to the video websites that you enable.
扩展基本信息
名称 | veefeed |
ID | elpfmfdcigaklhenpknoifgfcfnefkdf |
官方URL | https://chromewebstore.google.com/detail/veefeed/elpfmfdcigaklhenpknoifgfcfnefkdf |
简介 | Keep track of your YouTube and Twitch subscriptions |
文件大小 | 1.56 MB |
安装次数 | 26 |
当前版本 | 0.10.5 |
更新时间 | 2022-01-17 |
上架时间 | 2019-07-11 |
评分 | 5.00/5 共1次评分 |
开发者 | fent |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/fent/chrome-veefeed |
帮助页面URL | https://github.com/fent/chrome-veefeed/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "veefeed", "version": "0.10.5", "description": "Keep track of your YouTube and Twitch subscriptions", "applications": { "gecko": { "id": "[email protected]" } }, "icons": { "128": "img\/icon-128.png" }, "permissions": [ "https:\/\/www.twitch.tv\/", "https:\/\/api.twitch.tv\/", "https:\/\/www.youtube.com\/", "https:\/\/haloruns.z20.web.core.windows.net\/content\/feeds\/latestRecords.json", "https:\/\/www.speedrun.com\/", "https:\/\/t.co\/", "contextMenus", "cookies", "notifications", "storage" ], "author": "fent (https:\/\/github.com\/fent)", "background": { "page": "background\/background.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch?*v=*" ], "js": [ "util\/time.js", "util\/hyperscript.js", "content\/shared.js", "content\/youtube.js" ], "css": [ "content\/style.css" ] }, { "matches": [ "https:\/\/www.twitch.tv\/videos\/*" ], "js": [ "util\/time.js", "util\/hyperscript.js", "content\/shared.js", "content\/twitch.js" ], "css": [ "content\/style.css" ] } ], "browser_action": { "default_popup": "popup\/popup.html" }, "options_ui": { "page": "options\/options.html", "open_in_tab": true } } |