Console Importer

Import JavaScript and CSS resources from console, with one command

Console Importer là gì?

Console Importer là một tiện ích mở rộng Chrome được phát triển bởi Rongjian Zhang, và tính năng chính của nó là "Import JavaScript and CSS resources from console, with one command".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Console Importer

Tải xuống các tệp mở rộng Console Importer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Console Importer Console Importer
ID hgajpakhafplebkdljleajgbpdmplhie
URL Chính Thức https://chromewebstore.google.com/detail/console-importer/hgajpakhafplebkdljleajgbpdmplhie
Mô tả Import JavaScript and CSS resources from console, with one command
Kích Thước Tệp 9.55 KB
Số Lần Cài Đặt 14,579
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2022-05-04
Ngày Phát Hành 2017-07-30
Đánh Giá 4.71/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Rongjian Zhang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pd4d10/console-importer
URL Trang Trợ Giúp https://github.com/pd4d10/console-importer
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}