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是由North101開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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\/*" ] } ] } |