Browser Control

This extension allows you to delete whatever you want from a webpage.

Browser Control란 무엇입니까?

Browser Control은(는) Jesse Benton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to delete whatever you want from a webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Browser Control 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Remove any part of a webpage that you don't want to see! Turn on the app, hover over the element you don't want to see, hold the 'ctrl' key and right click!

Version 1.3
  Simplified interface. Use the extension icon to enable or disable.
    Once enabled: hold 'ctrl' and right click the page element you 
    want to remove.
  Fixed iframe removal
  Removed jQuery dependency

Version 1.2.1
  Bug fix

Version 1.2
  New Hot Key mode! Once enabled, hold the Control Key(left or right) to activate.

Version 1.1
  Toggle the app without refreshing the page!
  Right click to erase elements
  iFrames automatically removed(toggle coming soon)                    

확장 프로그램 기본 정보

이름 Browser Control Browser Control
ID jfkkofodnfgoogjgpfbapecgapbchhei
공식 URL https://chrome.google.com/webstore/detail/browser-control/jfkkofodnfgoogjgpfbapecgapbchhei
설명 This extension allows you to delete whatever you want from a webpage.
파일 크기 23.39 KB
설치 횟수 192
현재 버전 1.3.1.1
최근 업데이트 2014-07-30
출시 날짜 2014-07-30
평점 3.00/5 총 7 개의 평점
개발자 Jesse Benton
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browser Control",
    "description": "This extension allows you to delete whatever you want from a webpage.",
    "version": "1.3.1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/browser_control.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "name": "Browser Control"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "storage",
        "https:\/\/*\/*"
    ]
}