Browser Control

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

Browser Control क्या है?

Browser Control Jesse Benton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to delete whatever you want from a webpage."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Browser Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
    ]
}