Inspector Saver

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

O que é Inspector Saver?

Inspector Saver é uma extensão do Chrome desenvolvida por https://trumani.com, e sua principal característica é "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Inspector Saver

Baixe arquivos de extensão Inspector Saver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
URL Oficial https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
Descrição Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
Tamanho do Arquivo 135 KB
Contagem de Instalações 660
Versão Atual 1.1
Última Atualização 2019-10-16
Data de Publicação 2019-10-13
Classificação 2.17/5 Total de 6 Avaliações
Desenvolvedor https://trumani.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://trumani.com/products
URL da Página de Política de Privacidade http://trumani.com/privacy
Idiomas Suportados 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"
        }
    ]
}