Nuke anything reloaded
Allows you to hide almost anything via context menu.
Nuke anything reloaded란 무엇입니까?
Nuke anything reloaded은(는) redgizmo75에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to hide almost anything via context menu."입니다.
확장 프로그램 스크린샷
Nuke anything reloaded 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to hide almost any object on a web page. Just right click on the object you want to disappear and chose 'Remove this object' from context menu. You can remove as many objects as you want and you can restore the objects again. Removal is only temporary, if you reload the page everything is as it was. Nothing is stored by this extension. This extension is inspired by 'Nuke anyhting (enhanced)' addon for FF. SourceCode can be found on GitHub: https://github.com/redgizmo75/nuke_anything_reloaded
확장 프로그램 기본 정보
이름 | Nuke anything reloaded |
ID | pfmoigombklcdimgnlmhmohjdihgdmdc |
공식 URL | https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc |
설명 | Allows you to hide almost anything via context menu. |
파일 크기 | 34.68 KB |
설치 횟수 | 495 |
현재 버전 | 1.0 |
최근 업데이트 | 2017-09-16 |
출시 날짜 | 2017-09-16 |
평점 | 2.60/5 총 5 개의 평점 |
개발자 | redgizmo75 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0", "default_locale": "en", "permissions": [ "contextMenus" ], "icons": { "16": "icon_nuke_16.png", "128": "icon_nuke_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "content_script.js" ] } ], "background": { "scripts": [ "background.js" ] } } |