sourceditor

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

Cos'è sourceditor?

sourceditor è un'estensione di Chrome sviluppata da littlen4, e la sua funzione principale è "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione sourceditor

Scarica i file di estensione sourceditor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
URL Ufficiale https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Descrizione A simple and minimal extension that enables you to edit the source code of any website and save it.
Dimensione del File 175 KB
Conteggio Installazioni 3,000
Versione Corrente 1.0
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.39/5 Totale 44 Valutazioni
Sviluppatore littlen4
Tipo di Pagamento free
Lingue Supportate 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'"
}