EMSCharts Filler
Autofills EMSCharts with defaults.
EMSCharts Fillerとは何ですか?
EMSCharts Fillerはcmattoonによって開発されたChromeの拡張機能で、その主な機能は「Autofills EMSCharts with defaults.」です。
拡張機能のスクリーンショット
EMSCharts Filler拡張機能のCRXファイルをダウンロード
EMSCharts Filler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Visit http://cmattoon.github.io/chartfiller/ for more information.
To report an issue, visit https://github.com/chartfiller/chartfiller/issues
This is NOT supported by emscharts.com. 拡張機能の基本情報
| 名前 | |
| ID | nbhcjidkipddkpjehegpgjiijedokgnf |
| 公式URL | https://chromewebstore.google.com/detail/emscharts-filler/nbhcjidkipddkpjehegpgjiijedokgnf |
| 説明 | Autofills EMSCharts with defaults. |
| ファイルサイズ | 95.19 KB |
| インストール数 | 347 |
| 現在のバージョン | 0.1.4 |
| 最終更新日 | 2019-05-26 |
| 公開日 | 2019-05-26 |
| 評価 | 4.33/5 合計 3 レビュー |
| 開発者 | cmattoon |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://cmattoon.github.io/chartfiller/ |
| ヘルプページのURL | https://github.com/cmattoon/chartfiller/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "EMSCharts Filler",
"short_name": "Chartfiller",
"version": "0.1.4",
"description": "Autofills EMSCharts with defaults.",
"manifest_version": 2,
"background": {
"persistent": false,
"scripts": [
"bg.js"
]
},
"icons": {
"16": "icon_16.png",
"128": "icon_128.png"
},
"options_page": "options.html",
"permissions": [
"https:\/\/*.emscharts.com\/pr\/",
"storage"
],
"web_accessible_resources": [
"inject.js"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.emscharts.com\/pr\/page2.cfm?*"
],
"js": [
"jquery-1.8.3.min.js",
"page2.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.emscharts.com\/pr\/page3.cfm?*"
],
"js": [
"jquery-1.8.3.min.js",
"page3.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.emscharts.com\/pr\/page4.cfm?*"
],
"js": [
"jquery-1.8.3.min.js",
"page4.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.emscharts.com\/pr\/page5.cfm?*"
],
"js": [
"jquery-1.8.3.min.js",
"page5.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.emscharts.com\/pr\/page8.cfm?*"
],
"js": [
"jquery-1.8.3.min.js",
"page8.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_title": "EMSCharts Filler",
"default_popup": "popup.html"
}
} | |