Force Copy

Force Copy Everything

Force Copy क्या है?

Force Copy Breeze द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Force Copy Everything"।

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

screenshot

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

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

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

                        Force Copy allows you to lift copy restrictions, keyboard restrictions, and right-click menu restrictions on Web pages.

All functions of the extension are turned off by default. When you need it, click the extension program and select the corresponding module to start it.

⭐ Start means that the domain name remains open. Even if the page is closed, it will still remain started the next time it is opened.
⭐ Once means that it will only take effect in the current Tab page. After closing the Tab page, it will remain closed the next time it is opened. Note that refreshing the page will not turn off the function. This is useful in many situations, especially in rich text editor websites.

Open source address: https://github.com/WindrunnerMax/TKScript.                    

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

नाम Force Copy Force Copy
ID cceclgeciefpanebkfkogecbjjchmico
आधिकारिक URL https://chromewebstore.google.com/detail/force-copy/cceclgeciefpanebkfkogecbjjchmico
विवरण Force Copy Everything
फ़ाइल का आकार 170 KB
स्थापना संख्या 505
वर्तमान संस्करण 1.0.6
अंतिम अपडेट 2024-01-22
प्रकाशन तिथि 2023-10-08
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Breeze
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/WindrunnerMax/TKScript/tree/master/packages/force-copy/README.md
सहायता पृष्ठ URL https://github.com/WindrunnerMax/TKScript/issues
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Force Copy",
    "version": "1.0.6",
    "description": "Force Copy Everything",
    "default_locale": "en",
    "icons": {
        "32": ".\/static\/favicon.128.png",
        "96": ".\/static\/favicon.128.png",
        "128": ".\/static\/favicon.128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": ".\/static\/favicon.128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/*",
                "eQnCrNJRXq.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "minimum_chrome_version": "88.0"
}