AddJS

This extension allows you to add your own custom website specific JavaScript.

AddJSคืออะไร?

AddJS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://mkhsoft.eu และคุณลักษณะหลักของมันคือ "This extension allows you to add your own custom website specific JavaScript."

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

screenshot
screenshot

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

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

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

                        AddJS is a light-weight extension for injecting your own JavaScript to a website. You can define domain specific JavaScript snippets that will be injected to all sites in that web domain. 

Furthermore, your snippets are synchronised automatically to all Chrome browsers you are using on different machines.                    

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

ชื่อ AddJS AddJS
ID ikdcaklgiaookdchoncnfcidafmmlndm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm
คำอธิบาย This extension allows you to add your own custom website specific JavaScript.
ขนาดไฟล์ 57.22 KB
จำนวนการติดตั้ง 165
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-01-19
วันที่เผยแพร่ 2017-01-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา http://mkhsoft.eu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddJS",
    "description": "This extension allows you to add your own custom website specific JavaScript.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon128.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}