Crunchyroll Queue
This Extension create a external queue for one account Crunchyroll and too many users
Crunchyroll Queue란 무엇입니까?
Crunchyroll Queue은(는) lordhulk96에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Extension create a external queue for one account Crunchyroll and too many users"입니다.
확장 프로그램 스크린샷
Crunchyroll Queue 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Extension save in your browser one queue of your anime from Crunchyroll (https://www.crunchyroll.com). Added 2 buttons in https://www.crunchyroll.com/home/queue and https://www.crunchyroll.com/*/episode* This button add anime in your queue, in this queue you can see or delete your anime in the future. You can see this button on the Screenshots for locate it. Thx for using this extension. 3.0 The crown Update! In this update add the crown.. The Crown Check for you in Crunchyroll if Exist new Episode of you anime! Dont forget say thx!
확장 프로그램 기본 정보
이름 | Crunchyroll Queue |
ID | hidpbdcgmlcpcgdaaobpbamhbkamihpe |
공식 URL | https://chromewebstore.google.com/detail/crunchyroll-queue/hidpbdcgmlcpcgdaaobpbamhbkamihpe |
설명 | This Extension create a external queue for one account Crunchyroll and too many users |
파일 크기 | 184 KB |
설치 횟수 | 34 |
현재 버전 | 3.2 |
최근 업데이트 | 2021-06-17 |
출시 날짜 | 2021-06-17 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | lordhulk96 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "This Extension create a external queue for one account Crunchyroll and too many users", "manifest_version": 2, "name": "Crunchyroll Queue", "version": "3.2", "homepage_url": "https:\/\/github.com\/Lordhulk\/crunchyroll-queue", "icons": { "512": "icons\/border-512.png" }, "permissions": [ "storage", "*:\/\/*.crunchyroll.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.crunchyroll.com\/home\/queue" ], "js": [ "backgroundJs\/addButton.js" ] }, { "matches": [ "*:\/\/*.crunchyroll.com\/*\/home\/queue" ], "js": [ "backgroundJs\/addButton.js" ] }, { "matches": [ "*:\/\/*.crunchyroll.com\/*\/*-*" ], "js": [ "backgroundJs\/episodeButton.js" ] } ], "browser_action": { "default_icon": "icons\/border-512.png", "default_title": "Crunchyroll Queue", "default_popup": "popup\/queue.html" }, "web_accessible_resources": [ "icons\/border-512.png", "icons\/Delete.png", "icons\/crown_gold.png" ], "background": { "scripts": [ "backgroundJs\/background.js" ] } } |