Browser Control

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

Τι είναι το Browser Control;

Το Browser Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jesse Benton, και η κύρια λειτουργία του είναι "This extension allows you to delete whatever you want from a webpage.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Browser Control

Λήψη αρχείων επέκτασης Browser Control σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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:\/\/*\/*"
    ]
}