Console Injector

Easily inject javascript libraries from the console

Console Injectorคืออะไร?

Console Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andrew.coenen และคุณลักษณะหลักของมันคือ "Easily inject javascript libraries from the console"

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

screenshot

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

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

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

                        Console injector allows easy injection of javascript scripts into any page from the console, using the following simple syntax:

console.inject('jquery');

This is very handy for quickly testing ideas in the console and rapidly injecting code into existing sites. Console Injector searches cdnjs for javascript libraries matching a given input string, and inserts the latest corresponding script hosted at cdnjs.cloudflare.com.

Console Injector is open source and located at https://github.com/cannoneyed/console-injector                    

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

ชื่อ Console Injector Console Injector
ID abdfbnapkafgcheofcijaieahcbjnpkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd
คำอธิบาย Easily inject javascript libraries from the console
ขนาดไฟล์ 20.4 KB
จำนวนการติดตั้ง 1,289
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2015-08-21
วันที่เผยแพร่ 2015-08-20
คะแนน 4.92/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา andrew.coenen
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Console Injector",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Easily inject javascript libraries from the console",
    "homepage_url": "http:\/\/cannoneyed.github.io",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}