Funimation - Queue Fix
If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this.
Funimation - Queue Fix란 무엇입니까?
Funimation - Queue Fix은(는) Justin N에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this."입니다.
확장 프로그램 스크린샷
Funimation - Queue Fix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
I've recently been unable too keep the extension updated. I have published it on GitHub if others would like to continue working with it and help out the Funimation community. If you have any contributions I can add in, let me know and I can include them and your name if you like as a part of the team. https://github.com/N3FF/Funimation-Queue-Fix This will fix Funimation's queue page. It will allow you to reorder your queue and save it. It replaces their dead image links with working ones, loads your whole queue at once, and has an up arrow added to the block that will move a series all the way to the top instead of dragging it. Might not work anymore: If you have shows that you are not able to add to your queue because it says "Remove from Queue" on shows that are not in your queue, you can now add them by turning it on and then hold "Shift" and put your mouse over the "Remove from Queue" and it will say "Add to Queue". If you don't want your entire queue to load, and would prefer it to load by 8 shows, you can turn the extension off and only enable it when you want to reorder and save things.
확장 프로그램 기본 정보
이름 | Funimation - Queue Fix |
ID | ihhcackjnfdapogipocnklnfigeapijk |
공식 URL | https://chromewebstore.google.com/detail/funimation-queue-fix/ihhcackjnfdapogipocnklnfigeapijk |
설명 | If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this. |
파일 크기 | 238 KB |
설치 횟수 | 578 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2023-06-09 |
출시 날짜 | 2020-10-14 |
평점 | 4.59/5 총 17 개의 평점 |
개발자 | Justin N |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/N3FF/Funimation-Queue-Fix |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Funimation - Queue Fix", "version": "1.2.1", "manifest_version": 2, "description": "If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this.", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "cookies", "storage", "*:\/\/*.funimation.com\/*", "*:\/\/prod-api-funimationnow.dadcdigital.com\/api*" ], "content_scripts": [ { "matches": [ "*:\/\/www.funimation.com\/account\/*" ], "js": [ "jqueryui\/external\/jquery\/jquery.js", "jqueryui\/jquery-ui.min.js", "js\/queueContent.js" ] }, { "matches": [ "*:\/\/www.funimation.com\/*" ], "exclude_matches": [ "*:\/\/www.funimation.com\/account\/*" ], "js": [ "jqueryui\/external\/jquery\/jquery.js", "js\/removeItemFix.js" ] } ], "background": { "scripts": [ "jqueryui\/external\/jquery\/jquery.js", "js\/background.js" ] } } |