Inject JS

This extension will inject javascript from a URL into the current webpage

Inject JSคืออะไร?

Inject JS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dailenspencer12 และคุณลักษณะหลักของมันคือ "This extension will inject javascript from a URL into the current webpage"

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

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

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

                                            

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

ชื่อ Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
คำอธิบาย This extension will inject javascript from a URL into the current webpage
ขนาดไฟล์ 40.14 KB
จำนวนการติดตั้ง 80
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2016-09-29
วันที่เผยแพร่ 2016-09-29
ผู้พัฒนา dailenspencer12
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}