Enable Copy/Paste

Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.

Enable Copy/Paste क्या है?

Enable Copy/Paste dominicfallows द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it."।

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

screenshot

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

crx प्रारूप में Enable Copy/Paste एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This simple extension enables you to use things like complex passwords and paste them directly into password fields on sites that prevent this needlessly.                    

एक्सटेंशन की मूल जानकारी

नाम Enable Copy/Paste Enable Copy/Paste
ID leghnagnephbfcencnbonkbdimeokhem
आधिकारिक URL https://chromewebstore.google.com/detail/enable-copypaste/leghnagnephbfcencnbonkbdimeokhem
विवरण Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.
फ़ाइल का आकार 12.09 KB
स्थापना संख्या 2,230
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-11-28
प्रकाशन तिथि 2021-11-27
डेवलपर dominicfallows
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dominicfallows/enable-copy-paste-chrome-extension
सहायता पृष्ठ URL https://github.com/dominicfallows/enable-copy-paste-chrome-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Copy\/Paste",
    "description": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it.",
    "version": "1.0",
    "author": "Dominic Fallows",
    "homepage_url": "https:\/\/github.com\/dominicfallows\/enable-copy-paste-chrome-extension",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle",
            "match_about_blank": false,
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    }
}