Hidden Input Finder
Find if there is a hidden input field
Hidden Input Finderとは何ですか?
Hidden Input FinderはPTCによって開発されたChromeの拡張機能で、その主な機能は「Find if there is a hidden input field」です。
拡張機能のスクリーンショット
Hidden Input Finder拡張機能のCRXファイルをダウンロード
Hidden Input Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
2022/09/20 Update: remove unnecessary permission
拡張機能の基本情報
名前 | Hidden Input Finder |
ID | dekoidpnemkjhliakocnefjglakopanf |
公式URL | https://chromewebstore.google.com/detail/hidden-input-finder/dekoidpnemkjhliakocnefjglakopanf |
説明 | Find if there is a hidden input field |
ファイルサイズ | 245 KB |
インストール数 | 388 |
現在のバージョン | 1.3 |
最終更新日 | 2022-09-20 |
公開日 | 2019-04-07 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | PTC |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ptc0219/Hidden-Input-Finder |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hidden Input Finder", "description": "Find if there is a hidden input field", "version": "1.3", "author": "Jimmy Pan", "icons": { "16": "icon\/icon16.png", "24": "icon\/icon24.png", "32": "icon\/icon32.png", "128": "icon\/icon128.png", "512": "icon\/icon512.png" }, "browser_action": { "default_icon": { "16": "icon\/icon16.png", "24": "icon\/icon24.png", "32": "icon\/icon32.png", "128": "icon\/icon128.png", "512": "icon\/icon512.png" }, "default_title": "Hidden Input Finder", "default_popup": "popup.html" }, "permissions": [ "*:\/\/*\/*", "file:\/\/\/*\/*", "activeTab" ], "background": { "scripts": [ "js\/jquery-3.1.1.min.js", "js\/background.js" ], "persistent": false } } |