Save Inspect

Extension for Save Inspection and easy code-less editing!

Vad är Save Inspect?

Save Inspect är en Chrome-tillägg utvecklad av Tobi Situ, och dess huvudfunktion är "Extension for Save Inspection and easy code-less editing!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Save Inspect-förlängningens CRX-fil

Ladda ner Save Inspect-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Save Inspect Save Inspect
ID okdjjdfncmbfeoklehpmadgcdbnlnabd
Officiell webbadress https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd
Beskrivning Extension for Save Inspection and easy code-less editing!
Filstorlek 2.73 MB
Antal Installationer 1,468
Aktuell Version 2.0
Senast Uppdaterad 2020-02-28
Publiceringsdatum 2020-02-28
Betyg 1.44/5 Totalt 9 Betyg
Utvecklare Tobi Situ
Betalningssätt free
Stödda Språk 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
}