Enable Copy Paste - E.C.P
Enable copy paste on websites that have disabled copy paste.
Enable Copy Paste - E.C.P란 무엇입니까?
Enable Copy Paste - E.C.P은(는) https://kodemuse.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable copy paste on websites that have disabled copy paste."입니다.
확장 프로그램 스크린샷
Enable Copy Paste - E.C.P 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How to use: - Click on the extension icon - After a popup is opened, use the “Enable copy paste for all websites” checkbox. - Manually refresh the page and see if the extension has successfully enabled copy paste functionality on the website. - Use "Aggressive Mode" if default mode does not enable copy paste on websites. This extension may not work for websites that use extremely sophisticated methods for disabling copy paste functionality. Privacy notice: This software neither collects nor transmits any personally identifiable information. This software does not track your browsing behaviour. Information necessary for functioning of this software is stored on the devices of the end user, our servers do not have access to this information.
확장 프로그램 기본 정보
이름 | Enable Copy Paste - E.C.P |
ID | fpjppnhnpnknbenelmbnidjbolhandnf |
공식 URL | https://chromewebstore.google.com/detail/enable-copy-paste-ecp/fpjppnhnpnknbenelmbnidjbolhandnf |
설명 | Enable copy paste on websites that have disabled copy paste. |
파일 크기 | 92.99 KB |
설치 횟수 | 161,181 |
현재 버전 | 2.0.0.1 |
최근 업데이트 | 2023-05-24 |
출시 날짜 | 2021-01-19 |
평점 | 3.92/5 총 60 개의 평점 |
개발자 | https://kodemuse.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.kodemuse.dev/enable-copy-paste/ |
도움말 페이지 URL | https://www.kodemuse.dev/enable-copy-paste/ |
개인정보 보호 정책 페이지 URL | https://www.kodemuse.dev/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Enable Copy Paste - E.C.P", "description": "Enable copy paste on websites that have disabled copy paste.", "short_name": "E.C.P", "manifest_version": 3, "version": "2.0.0.1", "permissions": [ "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "homepage_url": "https:\/\/www.kodemuse.dev\/enable-copy-paste\/", "background": { "service_worker": "\/background\/background_sw.js" }, "action": { "default_title": "Enable Copy Paste - E.C.P", "default_popup": "\/popup\/popup.html" }, "icons": { "16": "\/icon\/16.png", "24": "\/icon\/24.png", "32": "\/icon\/32.png", "48": "\/icon\/48.png", "64": "\/icon\/64.png", "128": "\/icon\/128.png", "256": "\/icon\/256.png", "512": "\/icon\/512.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/content_script\/enable_copy.js" ], "run_at": "document_end", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "\/content_script_web_accessible\/ecp_aggressive.js", "\/content_script_web_accessible\/ecp_regular.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |