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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Justin N และคุณลักษณะหลักของมันคือ "If you can't save your queue changes (Reordering, removing, etc...) on Funimation.com then you can use this."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Funimation - Queue Fix
ดาวน์โหลดไฟล์ส่วนขยาย Funimation - Queue Fix ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } } |