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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The MPC Project Helper is a Chrome extension that allows you to easily reuse and share your MPC projects. Save time by uploading…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में MPC Project Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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\/*"
            ]
        }
    ]
}