Code Injector

Extension for JS & style injecting into the specified website.

Code Injectorคืออะไร?

Code Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย martin.suba01 และคุณลักษณะหลักของมันคือ "Extension for JS & style injecting into the specified website."

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

screenshot

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

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

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

                        Tool for injecting custom JavaScript and CSS into website specified by domain. Uses Chrome storage sync API to store your scripts. You can create and edit your scripts in the tab UI of the extension which opens on extension icon click. There's jQuery support for JavaScript codes.

Features:
✔️ injects JS and CSS code into website specified by domain match
✔️ supports jQuery v3.4.1
✔️ tab UI for script management
✔️ simple code editor with JS/CSS text highlight                    

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

ชื่อ Code Injector Code Injector
ID mmngbmmjfjannofkffhoindghfbhcool
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/code-injector/mmngbmmjfjannofkffhoindghfbhcool
คำอธิบาย Extension for JS & style injecting into the specified website.
ขนาดไฟล์ 110 KB
จำนวนการติดตั้ง 1,016
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-02-06
วันที่เผยแพร่ 2020-02-06
คะแนน 3.30/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา martin.suba01
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "description": "Extension for JS & style injecting into the specified website.",
    "version": "0.0.1",
    "author": "Martin Suba",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon64.png"
        },
        "default_title": "Open the Code Injector in tab"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}