sourceditor

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

Vad är sourceditor?

sourceditor är en Chrome-tillägg utvecklad av littlen4, och dess huvudfunktion är "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Tilläggsskärmbilder

screenshot

Ladda ner sourceditor-förlängningens CRX-fil

Ladda ner sourceditor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Officiell webbadress https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Beskrivning A simple and minimal extension that enables you to edit the source code of any website and save it.
Filstorlek 175 KB
Antal Installationer 3,000
Aktuell Version 1.0
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 4.39/5 Totalt 44 Betyg
Utvecklare littlen4
Betalningssätt free
Stödda Språk 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'"
}