sourceditor

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

Qu'est-ce que sourceditor ?

sourceditor est une extension Chrome développée par littlen4, et sa fonction principale est "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension sourceditor

Téléchargez les fichiers d'extension sourceditor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
URL Officiel https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Description A simple and minimal extension that enables you to edit the source code of any website and save it.
Taille du Fichier 175 KB
Nombre d'Installations 3,000
Version Actuelle 1.0
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 4.39/5 Total 44 Évaluations
Développeur littlen4
Type de Paiement free
Langues Prises en Charge 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'"
}