Crunchysync
Sync the Crunchyroll queue properly
Τι είναι το Crunchysync;
Το Crunchysync είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον maalni, και η κύρια λειτουργία του είναι "Sync the Crunchyroll queue properly".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Crunchysync
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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\/*" ] } ] } |