Save Inspect

Extension for Save Inspection and easy code-less editing!

Co je Save Inspect?

Save Inspect je rozšíření Chrome vyvinuté Tobi Situ, a jeho hlavní funkcí je „Extension for Save Inspection and easy code-less editing!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Save Inspect

Stáhněte si soubory rozšíření Save Inspect ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Save Inspect Save Inspect
ID okdjjdfncmbfeoklehpmadgcdbnlnabd
Oficiální URL https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd
Popis Extension for Save Inspection and easy code-less editing!
Velikost souboru 2.73 MB
Počet instalací 1,468
Aktuální Verze 2.0
Poslední Aktualizace 2020-02-28
Datum Vydání 2020-02-28
Hodnocení 1.44/5 Celkem 9 Hodnocení
Vývojář Tobi Situ
Typ Platby free
Podporované Jazyky 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
}