sourceditor

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

Hvad er sourceditor?

sourceditor er en Chrome-udvidelse udviklet af littlen4, og dens hovedfunktion er "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Udvidelsesskærmbilleder

screenshot

Download sourceditor-udvidelses-CRX-fil

Download sourceditor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Officiel URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Beskrivelse A simple and minimal extension that enables you to edit the source code of any website and save it.
Filstørrelse 175 KB
Antal Installationer 3,000
Nuværende Version 1.0
Senest Opdateret 2019-03-08
Udgivelsesdato 2019-03-08
Bedømmelse 4.39/5 Samlet 44 Bedømmelser
Udvikler littlen4
Betalingsmetode free
Understøttede Sprog 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'"
}