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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |