Console Importer

Import JavaScript and CSS resources from console, with one command

什么是Console Importer?

Console Importer是由Rongjian Zhang开发的Chrome扩展程序,该扩展的主要功能是“Import JavaScript and CSS resources from console, with one command”。

扩展截图

screenshot

下载Console Importer扩展crx文件

下载Console Importer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A tool for developers to easily import JS and CSS resources from Chrome console

Source code:
https://github.com/pd4d10/console-importer                    

扩展基本信息

名称 Console Importer Console Importer
ID hgajpakhafplebkdljleajgbpdmplhie
官方URL https://chromewebstore.google.com/detail/console-importer/hgajpakhafplebkdljleajgbpdmplhie
简介 Import JavaScript and CSS resources from console, with one command
文件大小 9.55 KB
安装次数 14,579
当前版本 2.1.0
更新时间 2022-05-04
上架时间 2017-07-30
评分 4.71/5 共17次评分
开发者 Rongjian Zhang
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/pd4d10/console-importer
帮助页面URL https://github.com/pd4d10/console-importer
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "2.1.0",
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/pd4d10\/console-importer",
    "icons": {
        "128": "images\/icon.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "assets\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*.js"
            ]
        }
    ]
}