veefeed
Keep track of your YouTube and Twitch subscriptions
veefeed란 무엇입니까?
veefeed은(는) fent에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of your YouTube and Twitch subscriptions"입니다.
확장 프로그램 스크린샷
veefeed 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |