Browser Control

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

Apa itu Browser Control?

Browser Control adalah ekstensi Chrome yang dikembangkan oleh Jesse Benton, dan fitur utamanya adalah "This extension allows you to delete whatever you want from a webpage.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Browser Control

Unduh file ekstensi Browser Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Browser Control Browser Control
ID jfkkofodnfgoogjgpfbapecgapbchhei
URL Resmi https://chrome.google.com/webstore/detail/browser-control/jfkkofodnfgoogjgpfbapecgapbchhei
Deskripsi This extension allows you to delete whatever you want from a webpage.
Ukuran File 23.39 KB
Jumlah Instalasi 192
Versi Saat Ini 1.3.1.1
Terakhir Diperbarui 2014-07-30
Tanggal Publikasi 2014-07-30
Penilaian 3.00/5 Total 7 Penilaian
Pengembang Jesse Benton
Tipe Pembayaran free
Bahasa yang Didukung 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:\/\/*\/*"
    ]
}