Javascript Injector

Inject javascript to the webpage you are visiting

Javascript Injectorคืออะไร?

Javascript Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Han และคุณลักษณะหลักของมันคือ "Inject javascript to the webpage you are visiting"

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

screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

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

ชื่อ Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
คำอธิบาย Inject javascript to the webpage you are visiting
ขนาดไฟล์ 59.53 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-06-16
วันที่เผยแพร่ 2017-06-16
คะแนน 4.13/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Daniel Han
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hex0cter/js-injector
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}