sourceditor

A simple and minimal extension that enables you to edit the source code of any website and save it.

sourceditorคืออะไร?

sourceditor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย littlen4 และคุณลักษณะหลักของมันคือ "A simple and minimal extension that enables you to edit the source code of any website and save it."

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

screenshot

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

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

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

                        sourceditor is a simple way to edit any website's source code and save it. The next time you visit a site you edited, the changes will still be there.                    

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

ชื่อ sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
คำอธิบาย A simple and minimal extension that enables you to edit the source code of any website and save it.
ขนาดไฟล์ 175 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
คะแนน 4.39/5 รวมทั้งหมด 44 คะแนน
ผู้พัฒนา littlen4
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "sourceditor",
    "description": "A simple and minimal extension that enables you to edit the source code of any website and save it.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "icons": {
        "128": "icon.png",
        "48": "citadel.jpg"
    },
    "permissions": [],
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}