Hide it now!

Hide unwanted element on any websites!

Hide it now!란 무엇입니까?

Hide it now!은(는) supertomlai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide unwanted element on any websites!"입니다.

확장 프로그램 스크린샷

screenshot

Hide it now! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Hide unwanted ADs or view blocking stuff on the webpage on a mouse click!
This Extension will add a right click menu item which let you instantly hide the selected AD/item on the displayed webpage!
User may be required to reload webpages to use this extension after installation.                    

확장 프로그램 기본 정보

이름 Hide it now! Hide it now!
ID ielggdbamjmfoiennlibhkknhopncipl
공식 URL https://chromewebstore.google.com/detail/hide-it-now/ielggdbamjmfoiennlibhkknhopncipl
설명 Hide unwanted element on any websites!
파일 크기 28.92 KB
설치 횟수 168
현재 버전 1.0
최근 업데이트 2015-03-19
출시 날짜 2015-03-18
평점 3.63/5 총 8 개의 평점
개발자 supertomlai
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide it now!",
    "description": "Hide unwanted element on any websites!",
    "omnibox": {
        "keyword": "hide"
    },
    "icons": {
        "16": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.0",
    "minimum_chrome_version": "9",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "mouseclick.js"
            ],
            "css": [
                "hide_element.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}