Duration Sort for YouTube Subscriptions
Adds a button to re-sort YouTube subscriptions by their duration.
Duration Sort for YouTube Subscriptions란 무엇입니까?
Duration Sort for YouTube Subscriptions은(는) Evan Kohilas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button to re-sort YouTube subscriptions by their duration."입니다.
확장 프로그램 스크린샷
Duration Sort for YouTube Subscriptions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you've ever wanted to navigate through your YouTube subscription feed by video duration, this extension will let you do that through a native sorting button.
확장 프로그램 기본 정보
이름 | |
ID | ogelmlojlklfapffhdeelmfpkpdbocha |
공식 URL | https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha |
설명 | Adds a button to re-sort YouTube subscriptions by their duration. |
파일 크기 | 27.18 KB |
설치 횟수 | 95 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2021-03-24 |
출시 날짜 | 2021-03-23 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | Evan Kohilas |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ekohilas/youtube-duration-sort |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duration Sort for YouTube Subscriptions", "short_name": "Duration Sort", "description": "Adds a button to re-sort YouTube subscriptions by their duration.", "version": "0.1.0", "manifest_version": 3, "author": { "name": "Evan Kohilas", "url": "https:\/\/github.com\/ekohilas\/youtube-duration-sort" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/feed\/subscriptions" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" } }, "icons": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" }, "options_page": "options.html" } |