Inspector Saver

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

Cos'è Inspector Saver?

Inspector Saver è un'estensione di Chrome sviluppata da https://trumani.com, e la sua funzione principale è "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Inspector Saver

Scarica i file di estensione Inspector Saver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
URL Ufficiale https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
Descrizione Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
Dimensione del File 135 KB
Conteggio Installazioni 660
Versione Corrente 1.1
Ultimo Aggiornamento 2019-10-16
Data di Pubblicazione 2019-10-13
Valutazione 2.17/5 Totale 6 Valutazioni
Sviluppatore https://trumani.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://trumani.com/products
URL della Pagina della Politica sulla Privacy http://trumani.com/privacy
Lingue Supportate 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"
        }
    ]
}