Console Importer

Import JavaScript and CSS resources from console, with one command

Wat is Console Importer?

Console Importer is een Chrome-extensie ontwikkeld door Rongjian Zhang, en de belangrijkste functie is "Import JavaScript and CSS resources from console, with one command".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Console Importer

Download Console Importer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam Console Importer Console Importer
ID hgajpakhafplebkdljleajgbpdmplhie
Officiële URL https://chromewebstore.google.com/detail/console-importer/hgajpakhafplebkdljleajgbpdmplhie
Beschrijving Import JavaScript and CSS resources from console, with one command
Bestandsgrootte 9.55 KB
Aantal Installaties 14,579
Huidige Versie 2.1.0
Laatst Bijgewerkt 2022-05-04
Publicatiedatum 2017-07-30
Beoordeling 4.71/5 Totaal 17 Beoordelingen
Ontwikkelaar Rongjian Zhang
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/pd4d10/console-importer
Help Pagina-URL https://github.com/pd4d10/console-importer
Ondersteunde Talen 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"
            ]
        }
    ]
}