sourceditor

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

Co je sourceditor?

sourceditor je rozšíření Chrome vyvinuté littlen4, a jeho hlavní funkcí je „A simple and minimal extension that enables you to edit the source code of any website and save it.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření sourceditor

Stáhněte si soubory rozšíření sourceditor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Oficiální URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Popis A simple and minimal extension that enables you to edit the source code of any website and save it.
Velikost souboru 175 KB
Počet instalací 3,000
Aktuální Verze 1.0
Poslední Aktualizace 2019-03-08
Datum Vydání 2019-03-08
Hodnocení 4.39/5 Celkem 44 Hodnocení
Vývojář littlen4
Typ Platby free
Podporované Jazyky 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'"
}