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.
What is Edit Hidden Fields?
Edit Hidden Fields is a Chrome extension developed by Rene "cavac" Schickbauer, and its main feature is "Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.".
Extension Screenshots
Download Edit Hidden Fields Extension CRX File
Download Edit Hidden Fields extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Edit Hidden Fields |
ID | jkgiedeofneodbglnndcejlabknincfp |
Official URL | https://chromewebstore.google.com/detail/edit-hidden-fields/jkgiedeofneodbglnndcejlabknincfp |
Description | Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website. |
File Size | 7.29 KB |
Installation Count | 893 |
Current Version | 0.7 |
Last Updated | 2016-03-12 |
Publish Date | 2016-03-12 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Rene "cavac" Schickbauer |
Payment Type | free |
Supported Languages | 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" } ] } |