Code Injector

Inject your code (html, css, js) into page.

Code Injectorคืออะไร?

Code Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dmitry.pechkovsky และคุณลักษณะหลักของมันคือ "Inject your code (html, css, js) into page."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Code Injector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!

What' new in 1.13:
- Libraries!

What' new in 1.14:
- Bugfixes.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Code Injector Code Injector
ID fehfokkkkeamcfiaogfdkkpoblipkmbd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd
คำอธิบาย Inject your code (html, css, js) into page.
ขนาดไฟล์ 399 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.14
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
คะแนน 3.42/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา dmitry.pechkovsky
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Injector",
    "description": "Inject your code (html, css, js) into page.",
    "manifest_version": 2,
    "version": "1.14",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Code Injector",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "functions.js",
                "config.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}