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
Eメール [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"
            ]
        }
    ]
}