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…"입니다.
확장 프로그램 스크린샷
Force Enable Text Selection 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } ] } |