Force Enable Text Selection

This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…

Force Enable Text Selection क्या है?

Force Enable Text Selection J-26 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…"।

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

screenshot

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

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

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

                        This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property.

I made this extension because Chegg Homework disables the text-selection ability for no reason that I can understand. This extension will allow you to select the text in the Homework Help section of their website and anywhere else that this feature has been disabled.

This extension does not enable text selection for websites that have disabled text selection via javascript. I am, however, happy to look into adding this ability if there is a need for it.

<3                    

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

नाम Force Enable Text Selection Force Enable Text Selection
ID ehahhhffddaohggfoijpnnagkkeagmmb
आधिकारिक URL https://chromewebstore.google.com/detail/force-enable-text-selecti/ehahhhffddaohggfoijpnnagkkeagmmb
विवरण This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…
फ़ाइल का आकार 22.35 KB
स्थापना संख्या 9,401
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-02-24
प्रकाशन तिथि 2019-02-20
रेटिंग 3.10/5 कुल 29 रेटिंग्स
डेवलपर J-26
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Force Enable Text Selection",
    "short_name": "Force Enable Text Selection",
    "version": "1.0.0",
    "description": "",
    "author": "J-26",
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "72": "icons\/icon-72.png",
            "96": "icons\/icon-96.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/options.js"
            ]
        }
    ]
}