Console Importer

Import JavaScript and CSS resources from console, with one command

Console Importerคืออะไร?

Console Importer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rongjian Zhang และคุณลักษณะหลักของมันคือ "Import JavaScript and CSS resources from console, with one command"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Console Importer

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}