Console Importer

Import JavaScript and CSS resources from console, with one command

What is Console Importer?

Console Importer is a Chrome extension developed by Rongjian Zhang, and its main feature is "Import JavaScript and CSS resources from console, with one command".

Extension Screenshots

screenshot

Download Console Importer Extension CRX File

Download Console Importer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

Extension Basic Information

Name Console Importer Console Importer
ID hgajpakhafplebkdljleajgbpdmplhie
Official URL https://chromewebstore.google.com/detail/console-importer/hgajpakhafplebkdljleajgbpdmplhie
Description Import JavaScript and CSS resources from console, with one command
File Size 9.55 KB
Installation Count 14,579
Current Version 2.1.0
Last Updated 2022-05-04
Publish Date 2017-07-30
Rating 4.71/5 Total 17 Ratings
Developer Rongjian Zhang
Email [email protected]
Payment Type free
Extension Website https://github.com/pd4d10/console-importer
Help Page URL https://github.com/pd4d10/console-importer
Supported Languages 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"
            ]
        }
    ]
}