sourceditor

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

Wat is sourceditor?

sourceditor is een Chrome-extensie ontwikkeld door littlen4, en de belangrijkste functie is "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie sourceditor

Download sourceditor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Officiële URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Beschrijving A simple and minimal extension that enables you to edit the source code of any website and save it.
Bestandsgrootte 175 KB
Aantal Installaties 3,000
Huidige Versie 1.0
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Beoordeling 4.39/5 Totaal 44 Beoordelingen
Ontwikkelaar littlen4
Betalingswijze free
Ondersteunde Talen 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'"
}