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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } |