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
Eメール [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"
            ]
        }
    ]
}