Crunchyroll Queue
This Extension create a external queue for one account Crunchyroll and too many users
Crunchyroll Queue là gì?
Crunchyroll Queue là một tiện ích mở rộng Chrome được phát triển bởi lordhulk96, và tính năng chính của nó là "This Extension create a external queue for one account Crunchyroll and too many users".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Crunchyroll Queue
Tải xuống các tệp mở rộng Crunchyroll Queue dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Crunchyroll Queue |
ID | hidpbdcgmlcpcgdaaobpbamhbkamihpe |
URL Chính Thức | https://chromewebstore.google.com/detail/crunchyroll-queue/hidpbdcgmlcpcgdaaobpbamhbkamihpe |
Mô tả | This Extension create a external queue for one account Crunchyroll and too many users |
Kích Thước Tệp | 184 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 3.2 |
Cập Nhật Lần Cuối | 2021-06-17 |
Ngày Phát Hành | 2021-06-17 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | lordhulk96 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |