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.
Edit Hidden Fieldsとは何ですか?
Edit Hidden FieldsはRene "cavac" Schickbauerによって開発されたChromeの拡張機能で、その主な機能は「Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.」です。
拡張機能のスクリーンショット
Edit Hidden Fields拡張機能のCRXファイルをダウンロード
Edit Hidden Fields拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | jkgiedeofneodbglnndcejlabknincfp |
| 公式URL | https://chromewebstore.google.com/detail/edit-hidden-fields/jkgiedeofneodbglnndcejlabknincfp |
| 説明 | Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website. |
| ファイルサイズ | 7.29 KB |
| インストール数 | 893 |
| 現在のバージョン | 0.7 |
| 最終更新日 | 2016-03-12 |
| 公開日 | 2016-03-12 |
| 評価 | 4.00/5 合計 1 レビュー |
| 開発者 | Rene "cavac" Schickbauer |
| 支払い方法 | free |
| 対応言語 | 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"
}
]
} | |