Remove Element
Remove an HTML element from the context menu (right-click).
Remove Element란 무엇입니까?
Remove Element은(는) atheimanksu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove an HTML element from the context menu (right-click)."입니다.
확장 프로그램 스크린샷
Remove Element 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu. Extremely simple and efficient code is available at https://github.com/atheiman/remove-element
확장 프로그램 기본 정보
이름 | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
공식 URL | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
설명 | Remove an HTML element from the context menu (right-click). |
파일 크기 | 178 KB |
설치 횟수 | 363 |
현재 버전 | 1.0 |
최근 업데이트 | 2015-09-03 |
출시 날짜 | 2015-09-02 |
평점 | 2.00/5 총 8 개의 평점 |
개발자 | atheimanksu |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Element", "description": "Remove an HTML element from the context menu (right-click).", "version": "1.0", "author": "Austin Heiman", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/red-x-16.png", "48": "images\/red-x-48.png", "128": "images\/red-x-128.png" }, "background": { "scripts": [ "event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |