sourceditor

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

What is sourceditor?

sourceditor is a Chrome extension developed by littlen4, and its main feature is "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Extension Screenshots

screenshot

Download sourceditor Extension CRX File

Download sourceditor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Official URL 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.
File Size 175 KB
Installation Count 3,000
Current Version 1.0
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 4.39/5 Total 44 Ratings
Developer littlen4
Payment Type free
Supported Languages 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'"
}