Did Youtube unsubscribe me?
Check if youtube unsubscribes you without asking.
什么是Did Youtube unsubscribe me??
Did Youtube unsubscribe me?是由T21 Computing开发的Chrome扩展程序,该扩展的主要功能是“Check if youtube unsubscribes you without asking.”。
扩展截图
下载Did Youtube unsubscribe me?扩展crx文件
下载Did Youtube unsubscribe me?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You get notified if you get unsubscribed from a YouTube channel so your favorite creators content stays on your home page. This extension will open a new YouTube tab in the background every few hours to check you subscription list. You must be Signed In. --------------------------------------- Currently In beta, so please report any issues on the support form on the chrome web store.
扩展基本信息
名称 | |
ID | lbodbdbdjefgplcajojgampojiiamjhe |
官方URL | https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe |
简介 | Check if youtube unsubscribes you without asking. |
文件大小 | 16.88 KB |
安装次数 | 30 |
当前版本 | 0.1.3 |
更新时间 | 2020-11-14 |
上架时间 | 2020-11-14 |
开发者 | T21 Computing |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://f1.t21computing.co.uk/privacy |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Did Youtube unsubscribe me?", "description": "Check if youtube unsubscribes you without asking.", "version": "0.1.3", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/?DYUM=1" ], "js": [ "js\/content.js" ], "css": [ "css\/main.css" ] } ], "icons": { "64": "images\/Unsub64.png", "128": "images\/Unsub128.png", "256": "images\/Unsub256.png" }, "web_accessible_resources": [ "manage\/*" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "64": "images\/Unsub64.png", "128": "images\/Unsub128.png", "256": "images\/Unsub256.png" } } } |