Save Inspect

Extension for Save Inspection and easy code-less editing!

O que é Save Inspect?

Save Inspect é uma extensão do Chrome desenvolvida por Tobi Situ, e sua principal característica é "Extension for Save Inspection and easy code-less editing!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Save Inspect

Baixe arquivos de extensão Save Inspect 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

                        Easily edit your existing webpages that are hosted on gitlab using chrome's inspect feature. 
When you save your changes using the extension, it updates the git files in real time by committing your changes.

You can also create new pages as well using the extension and push them to gitlab.                    

Informações Básicas da Extensão

Nome Save Inspect Save Inspect
ID okdjjdfncmbfeoklehpmadgcdbnlnabd
URL Oficial https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd
Descrição Extension for Save Inspection and easy code-less editing!
Tamanho do Arquivo 2.73 MB
Contagem de Instalações 1,468
Versão Atual 2.0
Última Atualização 2020-02-28
Data de Publicação 2020-02-28
Classificação 1.44/5 Total de 9 Avaliações
Desenvolvedor Tobi Situ
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Inspect",
    "version": "2.0",
    "description": "Extension for Save Inspection and easy code-less editing!",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-app.js https:\/\/*.firebaseio.com https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-auth.js https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-firestore.js;  object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 2
}