Save Inspect
Extension for Save Inspection and easy code-less editing!
Wat is Save Inspect?
Save Inspect is een Chrome-extensie ontwikkeld door Tobi Situ, en de belangrijkste functie is "Extension for Save Inspection and easy code-less editing!".
Extensie Screenshots
Download het CRX-bestand van de extensie Save Inspect
Download Save Inspect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Save Inspect |
ID | okdjjdfncmbfeoklehpmadgcdbnlnabd |
Officiële URL | https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd |
Beschrijving | Extension for Save Inspection and easy code-less editing! |
Bestandsgrootte | 2.73 MB |
Aantal Installaties | 1,468 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2020-02-28 |
Publicatiedatum | 2020-02-28 |
Beoordeling | 1.44/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Tobi Situ |
Betalingswijze | free |
Ondersteunde Talen | 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 } |