Quick Form Filler
Provides a context menu to fill forms quickly.
Quick Form Fillerとは何ですか?
Quick Form Fillerはprageethsilvaによって開発されたChromeの拡張機能で、その主な機能は「Provides a context menu to fill forms quickly.」です。
Quick Form Filler拡張機能のCRXファイルをダウンロード
Quick Form Filler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Version 1: Adds a context menu item to easy copy over the placeholder text into the input text box value. 拡張機能の基本情報
| 名前 | |
| ID | ogofbpejbcelpjpghigpepjnghlegeka |
| 公式URL | https://chromewebstore.google.com/detail/quick-form-filler/ogofbpejbcelpjpghigpepjnghlegeka |
| 説明 | Provides a context menu to fill forms quickly. |
| ファイルサイズ | 7.82 KB |
| インストール数 | 131 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2017-10-23 |
| 公開日 | 2017-10-23 |
| 開発者 | prageethsilva |
| 支払い方法 | free |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Quick Form Filler",
"description": "Provides a context menu to fill forms quickly.",
"version": "1.0",
"icons": {
"128": "icon.png"
},
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
]
} | |