Save Inspect
Extension for Save Inspection and easy code-less editing!
Co to jest Save Inspect?
Save Inspect to rozszerzenie Chrome opracowane przez Tobi Situ, a jego główną funkcją jest „Extension for Save Inspection and easy code-less editing!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Save Inspect
Pobierz pliki rozszerzeń Save Inspect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Save Inspect |
ID | okdjjdfncmbfeoklehpmadgcdbnlnabd |
Oficjalny URL | https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd |
Opis | Extension for Save Inspection and easy code-less editing! |
Rozmiar pliku | 2.73 MB |
Liczba instalacji | 1,468 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2020-02-28 |
Data Publikacji | 2020-02-28 |
Ocena | 1.44/5 Łącznie 9 Oceny |
Deweloper | Tobi Situ |
Typ Płatności | free |
Obsługiwane Języki | 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 } |