PasteEnabler
Paste when you're not allowed, copy when you're not allowed!
PasteEnabler란 무엇입니까?
PasteEnabler은(는) https://jonlu.ca에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Paste when you're not allowed, copy when you're not allowed!"입니다.
확장 프로그램 스크린샷
PasteEnabler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Reenables the following functionality on sites that disable it: * Ability to paste content * Ability to copy content * Ability to cut content * Ability to right click content * Ability to autocomplete certain inputs * Ability to select text * Ability to drag and drop text to/from inputs If a website does not allow you to copy and paste, or do any of the above, simply click the icon and try again! Source code here: https://github.com/jonluca/PasteEnabler Open an issue on GitHub if there are any sites on which this extension does not work!
확장 프로그램 기본 정보
이름 | PasteEnabler |
ID | dhadehfniifbmemochpmbofcjckpdnnl |
공식 URL | https://chromewebstore.google.com/detail/pasteenabler/dhadehfniifbmemochpmbofcjckpdnnl |
설명 | Paste when you're not allowed, copy when you're not allowed! |
파일 크기 | 28.6 KB |
설치 횟수 | 2,141 |
현재 버전 | 0.3 |
최근 업데이트 | 2021-06-10 |
출시 날짜 | 2019-05-03 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://jonlu.ca |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PasteEnabler", "description": "Paste when you're not allowed, copy when you're not allowed!", "version": "0.3", "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab" ], "browser_action": { "default_icon": "images\/icon.png" }, "icons": { "64": "images\/icon64.png", "32": "images\/icon32.png", "38": "images\/icon.png", "128": "images\/icon128.png" }, "homepage_url": "https:\/\/jonlu.ca", "web_accessible_resources": [ "js\/*" ] } |