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开发的Chrome扩展程序,该扩展的主要功能是“This extension re-enables the ability to select text that has been disabled via CSS using the "user-select" property. I made this…”。

扩展截图

screenshot

下载Force Enable Text Selection扩展crx文件

下载Force Enable Text Selection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}