sourceditor

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

Was ist sourceditor?

sourceditor ist eine Chrome-Erweiterung, die von littlen4 entwickelt wurde, und ihr Hauptmerkmal ist "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Erweiterungsscreenshots

screenshot

sourceditor-Erweiterungs-CRX-Datei herunterladen

Laden Sie sourceditor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Offizielle URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Beschreibung A simple and minimal extension that enables you to edit the source code of any website and save it.
Dateigröße 175 KB
Installationsanzahl 3,000
Aktuelle Version 1.0
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 4.39/5 Insgesamt 44 Bewertungen
Entwickler littlen4
Zahlungsart free
Unterstützte Sprachen 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'"
}