Save Inspect

Extension for Save Inspection and easy code-less editing!

Cos'è Save Inspect?

Save Inspect è un'estensione di Chrome sviluppata da Tobi Situ, e la sua funzione principale è "Extension for Save Inspection and easy code-less editing!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Save Inspect

Scarica i file di estensione Save Inspect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Save Inspect Save Inspect
ID okdjjdfncmbfeoklehpmadgcdbnlnabd
URL Ufficiale https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd
Descrizione Extension for Save Inspection and easy code-less editing!
Dimensione del File 2.73 MB
Conteggio Installazioni 1,468
Versione Corrente 2.0
Ultimo Aggiornamento 2020-02-28
Data di Pubblicazione 2020-02-28
Valutazione 1.44/5 Totale 9 Valutazioni
Sviluppatore Tobi Situ
Tipo di Pagamento free
Lingue Supportate 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
}