Browser Control

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

Cos'è Browser Control?

Browser Control è un'estensione di Chrome sviluppata da Jesse Benton, e la sua funzione principale è "This extension allows you to delete whatever you want from a webpage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Browser Control

Scarica i file di estensione Browser Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome Browser Control Browser Control
ID jfkkofodnfgoogjgpfbapecgapbchhei
URL Ufficiale https://chrome.google.com/webstore/detail/browser-control/jfkkofodnfgoogjgpfbapecgapbchhei
Descrizione This extension allows you to delete whatever you want from a webpage.
Dimensione del File 23.39 KB
Conteggio Installazioni 192
Versione Corrente 1.3.1.1
Ultimo Aggiornamento 2014-07-30
Data di Pubblicazione 2014-07-30
Valutazione 3.00/5 Totale 7 Valutazioni
Sviluppatore Jesse Benton
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
    ]
}