Piestar Autofill
An extension to autofill forms using data collected in the Piestar Reporting Hub
Piestar Autofillとは何ですか?
Piestar Autofillはhttp://piestar.comによって開発されたChromeの拡張機能で、その主な機能は「An extension to autofill forms using data collected in the Piestar Reporting Hub」です。
Piestar Autofill拡張機能のCRXファイルをダウンロード
Piestar Autofill拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension automatically transfers data from the Piestar Reporting Hub (https://www.piestar.com)
to other online reporting systems. 拡張機能の基本情報
| 名前 | |
| ID | bkmafakclphgcfeokfphlaejckfcgmfe |
| 公式URL | https://chrome.google.com/webstore/detail/piestar-autofill/bkmafakclphgcfeokfphlaejckfcgmfe |
| 説明 | An extension to autofill forms using data collected in the Piestar Reporting Hub |
| ファイルサイズ | 52.9 KB |
| インストール数 | 93 |
| 現在のバージョン | 1.0.6 |
| 最終更新日 | 2016-05-10 |
| 公開日 | 2016-05-10 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | http://piestar.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.piestar.com/autofill |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Piestar Autofill",
"version": "1.0.6",
"manifest_version": 2,
"description": "An extension to autofill forms using data collected in the Piestar Reporting Hub",
"homepage_url": "https:\/\/www.piestar.com\/autofill",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"src\/jquery.min.js",
"src\/piestar-autofill.js"
]
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "47.0a2"
}
},
"permissions": [
"http:\/\/*.vagrant\/*",
"https:\/\/*.vagrant\/*",
"https:\/\/*.piestar.com\/*",
"https:\/\/www.usaid.gov\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.usaid.gov\/data\/DDLSubmissions"
],
"css": [
"src\/piestar-usaid-ddl-autofill.css"
],
"js": [
"src\/jquery.min.js",
"src\/piestar-usaid-ddl-autofill.js"
]
},
{
"matches": [
"http:\/\/*.vagrant\/*\/data_management",
"https:\/\/*.piestar.com\/*\/data_management"
],
"css": [
"src\/piestar-data-management.css"
],
"js": [
"src\/jquery.min.js",
"src\/piestar-data-management.js"
]
}
]
} | |