Save Inspect
Extension for Save Inspection and easy code-less editing!
Qu'est-ce que Save Inspect ?
Save Inspect est une extension Chrome développée par Tobi Situ, et sa fonction principale est "Extension for Save Inspection and easy code-less editing!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Save Inspect
Téléchargez les fichiers d'extension Save Inspect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Save Inspect |
ID | okdjjdfncmbfeoklehpmadgcdbnlnabd |
URL Officiel | https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd |
Description | Extension for Save Inspection and easy code-less editing! |
Taille du Fichier | 2.73 MB |
Nombre d'Installations | 1,468 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2020-02-28 |
Date de Publication | 2020-02-28 |
Évaluation | 1.44/5 Total 9 Évaluations |
Développeur | Tobi Situ |
Type de Paiement | free |
Langues Prises en Charge | 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 } |