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 là gì?

MPC Project Helper là một tiện ích mở rộng Chrome được phát triển bởi North101, và tính năng chính của nó là "The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MPC Project Helper

Tải xuống các tệp mở rộng MPC Project Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MPC Project Helper MPC Project Helper
ID oigcfklkajlgkeblpngmbgjniiejabko
URL Chính Thức https://chromewebstore.google.com/detail/mpc-project-helper/oigcfklkajlgkeblpngmbgjniiejabko
Mô tả The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading…
Kích Thước Tệp 1.75 MB
Số Lần Cài Đặt 595
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2024-02-28
Ngày Phát Hành 2022-02-03
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển North101
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/North101/mpc_project_helper
URL Trang Chính Sách Bảo Mật https://doc-hosting.flycricket.io/mpc-project-helper/555086ee-ccc9-4e88-9a45-09923623b2cd/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}