JS Inject

Create, save, and inject javascript code into web pages.

JS Injectคืออะไร?

JS Inject เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bitwisecreative.com และคุณลักษณะหลักของมันคือ "Create, save, and inject javascript code into web pages."

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

screenshot

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

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

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

                        This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.                    

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

ชื่อ JS Inject JS Inject
ID pbicaeiggebhcjkenahlamdjgjhbbekc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc
คำอธิบาย Create, save, and inject javascript code into web pages.
ขนาดไฟล์ 551 KB
จำนวนการติดตั้ง 559
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2019-11-01
วันที่เผยแพร่ 2019-11-01
ผู้พัฒนา https://bitwisecreative.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Inject",
    "version": "1.0.0",
    "description": "Create, save, and inject javascript code into web pages.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JS Inject",
        "default_icon": {
            "16": "images\/js-inject16.png",
            "32": "images\/js-inject32.png",
            "48": "images\/js-inject48.png",
            "128": "images\/js-inject128.png"
        }
    },
    "icons": {
        "16": "images\/js-inject16.png",
        "32": "images\/js-inject32.png",
        "48": "images\/js-inject48.png",
        "128": "images\/js-inject128.png"
    },
    "manifest_version": 2
}