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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Force Enable Text Selection

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}