Save Inspect
Extension for Save Inspection and easy code-less editing!
Was ist Save Inspect?
Save Inspect ist eine Chrome-Erweiterung, die von Tobi Situ entwickelt wurde, und ihr Hauptmerkmal ist "Extension for Save Inspection and easy code-less editing!".
Erweiterungsscreenshots
Save Inspect-Erweiterungs-CRX-Datei herunterladen
Laden Sie Save Inspect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Save Inspect |
ID | okdjjdfncmbfeoklehpmadgcdbnlnabd |
Offizielle URL | https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd |
Beschreibung | Extension for Save Inspection and easy code-less editing! |
Dateigröße | 2.73 MB |
Installationsanzahl | 1,468 |
Aktuelle Version | 2.0 |
Letztes Update | 2020-02-28 |
Veröffentlichungsdatum | 2020-02-28 |
Bewertung | 1.44/5 Insgesamt 9 Bewertungen |
Entwickler | Tobi Situ |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |