Simple Remove Element
Adds a context menu to remove an element from a page
Simple Remove Element란 무엇입니까?
Simple Remove Element은(는) elfakyn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a context menu to remove an element from a page"입니다.
확장 프로그램 스크린샷
Simple Remove Element 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone. Extensions that can read data on all websites are scary. This extension is: Open-source Secure Efficient Auditable As simple as can be Designed with minimal permissions (still needs access to the active tab) Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element
확장 프로그램 기본 정보
이름 | Simple Remove Element |
ID | mlfckaclcmmggacnimimmeepailfhokj |
공식 URL | https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj |
설명 | Adds a context menu to remove an element from a page |
파일 크기 | 6.53 KB |
설치 횟수 | 21 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2019-11-08 |
출시 날짜 | 2019-11-05 |
개발자 | elfakyn |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Remove Element", "short_name": "Remove Element", "version": "1.0.4", "description": "Adds a context menu to remove an element from a page", "manifest_version": 2, "icons": { "48": "remove_48.png", "128": "remove_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove_element.js" ], "run_at": "document_idle" } ], "permissions": [ "contextMenus", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'" } |