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.
擴展基本資訊
名稱 | Quick Form Filler |
ID | ogofbpejbcelpjpghigpepjnghlegeka |
官方網址 | 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" ] } ] } |