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
官方網址 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"
            ]
        }
    ]
}