Browser Control

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

O que é Browser Control?

Browser Control é uma extensão do Chrome desenvolvida por Jesse Benton, e sua principal característica é "This extension allows you to delete whatever you want from a webpage.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Browser Control

Baixe arquivos de extensão Browser Control no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Browser Control Browser Control
ID jfkkofodnfgoogjgpfbapecgapbchhei
URL Oficial https://chrome.google.com/webstore/detail/browser-control/jfkkofodnfgoogjgpfbapecgapbchhei
Descrição This extension allows you to delete whatever you want from a webpage.
Tamanho do Arquivo 23.39 KB
Contagem de Instalações 192
Versão Atual 1.3.1.1
Última Atualização 2014-07-30
Data de Publicação 2014-07-30
Classificação 3.00/5 Total de 7 Avaliações
Desenvolvedor Jesse Benton
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*"
    ]
}