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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}