Crunchysync
Sync the Crunchyroll queue properly
什麼是Crunchysync?
Crunchysync是由maalni開發的Chrome擴展程式,該擴展的主要功能是“Sync the Crunchyroll queue properly”。
擴展截圖
下載Crunchysync擴展crx文件
下載Crunchysync擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } ] } |