MPC Project Helper
The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading…
Τι είναι το MPC Project Helper;
Το MPC Project Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον North101, και η κύρια λειτουργία του είναι "The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MPC Project Helper
Λήψη αρχείων επέκτασης MPC Project Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading images in bulk; the extension will automatically pair fronts and backs based on the filenames. MPC Project Helper then creates a json-formatted project file with links to the already uploaded images. This allows you to quickly combine multiple projects for cheaper printing and to share the project file with others, saving them the time of re-uploading and keeping your original project intact. No longer will you have to re-upload a project to make changes, or find that someone with whom you shared a link to your design inadvertently changed the project for everyone.
Βασικές Πληροφορίες Επέκτασης
Όνομα | MPC Project Helper |
ID | oigcfklkajlgkeblpngmbgjniiejabko |
Επίσημο URL | https://chromewebstore.google.com/detail/mpc-project-helper/oigcfklkajlgkeblpngmbgjniiejabko |
Περιγραφή | The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading… |
Μέγεθος Αρχείου | 1.75 MB |
Αριθμός Εγκαταστάσεων | 595 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2024-02-28 |
Ημερομηνία Δημοσίευσης | 2022-02-03 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | North101 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/North101/mpc_project_helper |
URL της Σελίδας Πολιτικής Απορρήτου | https://doc-hosting.flycricket.io/mpc-project-helper/555086ee-ccc9-4e88-9a45-09923623b2cd/privacy |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MPC Project Helper", "version": "2.1.0", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "declarativeContent" ], "host_permissions": [ "https:\/\/www.makeplayingcards.com\/", "https:\/\/www.printerstudio.co.uk\/", "https:\/\/www.printerstudio.com\/", "https:\/\/www.printerstudio.com.hk\/" ], "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.makeplayingcards.com\/*", "https:\/\/www.printerstudio.co.uk\/*", "https:\/\/www.printerstudio.com\/*", "https:\/\/www.printerstudio.com.hk\/*" ], "js": [ "src\/content.js" ], "css": [ "style.css" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "web_accessible_resources": [ { "resources": [ "bootstrap.min.css" ], "matches": [ "https:\/\/www.makeplayingcards.com\/*", "https:\/\/www.printerstudio.co.uk\/*", "https:\/\/www.printerstudio.com\/*", "https:\/\/www.printerstudio.com.hk\/*" ] } ] } |