Code Injector

Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.

ما هو Code Injector؟

Code Injector هو إضافة Chrome تم تطويرها بواسطة Melwyn Pawar، والميزة الرئيسية لها هي "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Code Injector

قم بتنزيل ملفات الامتداد Code Injector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages to make design and developmental decisions quickly.                    

معلومات أساسية عن التمديد

الاسم Code Injector Code Injector
ID ffpbejkllpoglbeeabibelceofidjfhk
عنوان URL الرسمي https://chrome.google.com/webstore/detail/code-injector/ffpbejkllpoglbeeabibelceofidjfhk
الوصف Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.
حجم الملف 293 KB
عدد التثبيتات 121
النسخة الحالية 1.4
آخر تحديث 2017-12-21
تاريخ النشر 2017-12-21
تقييم 1.00/5 مجموع تقييمات 1
المطور Melwyn Pawar
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "allLibs.js"
            ],
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "description": "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.",
    "icons": {
        "128": "l1.png",
        "16": "icon.png",
        "48": "l2.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Script Injector"
    },
    "web_accessible_resources": [
        "images\/pagebreak.png",
        "images\/pagebreak_alone.png"
    ],
    "manifest_version": 2,
    "name": "Code Injector",
    "permissions": [
        "tabs",
        "",
        "background"
    ],
    "version": "1.4"
}