Crunchysync
Sync the Crunchyroll queue properly
Crunchysync란 무엇입니까?
Crunchysync은(는) maalni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sync the Crunchyroll queue properly"입니다.
확장 프로그램 스크린샷
Crunchysync 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: - Sort your queue in 4 categories - View details for each episode - Get notified when a new episode airs or gets available for free (Can be disabled) - Darkmode If you encounter issues, please post them here: https://gitlab.com/maalni/crunchysync/issues Source Code: https://gitlab.com/maalni/crunchysync An Crunchyroll account is necessary to use this extension! Credentials will be encrypted and stored on your device and only be used to authenticate with Crunchyroll's api This extension is in no way affiliated with Crunchyroll! All product names, logos, and brands are property of their respective owners.
확장 프로그램 기본 정보
이름 | |
ID | ajfcpdkomcbeanmgbpoiedlkegdkjgfm |
공식 URL | https://chrome.google.com/webstore/detail/crunchysync/ajfcpdkomcbeanmgbpoiedlkegdkjgfm |
설명 | Sync the Crunchyroll queue properly |
파일 크기 | 1.45 MB |
설치 횟수 | 13 |
현재 버전 | 3.0.8 |
최근 업데이트 | 2021-10-10 |
출시 날짜 | 2019-11-03 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | maalni |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gitlab.com/maalni/crunchysync/ |
도움말 페이지 URL | https://gitlab.com/maalni/crunchysync/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crunchysync", "version": "3.0.8", "manifest_version": 3, "description": "Sync the Crunchyroll queue properly", "action": { "default_icon": "assets\/images\/crunchysync.png", "default_title": "Crunchysync", "default_popup": "index.html" }, "icons": { "16": "assets\/images\/crunchysync16.png", "48": "assets\/images\/crunchysync48.png", "128": "assets\/images\/crunchysync.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.crunchyroll.com\/*" ], "js": [ "contentscript.min.js" ], "css": [ "contentscript.min.css" ], "run_at": "document_end" } ], "background": { "service_worker": "serviceworker.min.js", "type": "module" }, "permissions": [ "tabs", "storage", "alarms", "notifications", "contextMenus" ], "host_permissions": [ "*:\/\/*.crunchyroll.com\/*" ], "web_accessible_resources": [ { "resources": [ "index.html" ], "matches": [ "*:\/\/*.crunchyroll.com\/*" ] } ] } |