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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}