sourceditor

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

Apa itu sourceditor?

sourceditor adalah ekstensi Chrome yang dikembangkan oleh littlen4, dan fitur utamanya adalah "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi sourceditor

Unduh file ekstensi sourceditor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
URL Resmi https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Deskripsi A simple and minimal extension that enables you to edit the source code of any website and save it.
Ukuran File 175 KB
Jumlah Instalasi 3,000
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 4.39/5 Total 44 Penilaian
Pengembang littlen4
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}