EMSCharts Filler

Autofills EMSCharts with defaults.

什么是EMSCharts Filler?

EMSCharts Filler是由cmattoon开发的Chrome扩展程序,该扩展的主要功能是“Autofills EMSCharts with defaults.”。

扩展截图

screenshot
screenshot

下载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.                    

扩展基本信息

名称 EMSCharts Filler EMSCharts Filler
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"
    }
}