sourceditor

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

O que é sourceditor?

sourceditor é uma extensão do Chrome desenvolvida por littlen4, e sua principal característica é "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão sourceditor

Baixe arquivos de extensão sourceditor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
URL Oficial https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Descrição A simple and minimal extension that enables you to edit the source code of any website and save it.
Tamanho do Arquivo 175 KB
Contagem de Instalações 3,000
Versão Atual 1.0
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 4.39/5 Total de 44 Avaliações
Desenvolvedor littlen4
Tipo de Pagamento free
Idiomas Suportados 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'"
}