Edit Hidden Fields

Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.

Co je Edit Hidden Fields?

Edit Hidden Fields je rozšíření Chrome vyvinuté Rene "cavac" Schickbauer, a jeho hlavní funkcí je „Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Edit Hidden Fields

Stáhněte si soubory rozšíření Edit Hidden Fields ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This is a forked, updated version of Ramon Roessler's Hidden Field Switcher.

You can either use CTRL-ALT-S or clicking the extension icon to display/hide hidden fields in HTML forms.                    

Základní Informace o Rozšíření

Název Edit Hidden Fields Edit Hidden Fields
ID jkgiedeofneodbglnndcejlabknincfp
Oficiální URL https://chromewebstore.google.com/detail/edit-hidden-fields/jkgiedeofneodbglnndcejlabknincfp
Popis Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.
Velikost souboru 7.29 KB
Počet instalací 893
Aktuální Verze 0.7
Poslední Aktualizace 2016-03-12
Datum Vydání 2016-03-12
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Rene "cavac" Schickbauer
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Edit Hidden Fields",
    "short_name": "Edit hidden",
    "description": "Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.",
    "version": "0.7",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}