Inspector Saver

Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.

Qu'est-ce que Inspector Saver ?

Inspector Saver est une extension Chrome développée par https://trumani.com, et sa fonction principale est "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Inspector Saver

Téléchargez les fichiers d'extension Inspector Saver 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

                        Store HTML and CSS changes in the browser so that you can return to it later. Showcase your changes with colleagues and clients by loading the edits. You can remove all edits you have captured on a specific page or on all pages at any time.                    

Informations de Base sur l'Extension

Nom Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
URL Officiel https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
Description Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
Taille du Fichier 135 KB
Nombre d'Installations 660
Version Actuelle 1.1
Dernière Mise à Jour 2019-10-16
Date de Publication 2019-10-13
Évaluation 2.17/5 Total 6 Évaluations
Développeur https://trumani.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://trumani.com/products
URL de la Page de Politique de Confidentialité http://trumani.com/privacy
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inspector Saver",
    "description": "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.",
    "version": "1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "trumani_material.png"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "detective-16.png",
        "48": "detective-48.png",
        "128": "detective-128.png"
    },
    "background": {
        "scripts": [
            "js\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ]
}