Inspector Saver

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

Co je Inspector Saver?

Inspector Saver je rozšíření Chrome vyvinuté https://trumani.com, a jeho hlavní funkcí je „Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Inspector Saver

Stáhněte si soubory rozšíření Inspector Saver ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
Oficiální URL https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
Popis Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
Velikost souboru 135 KB
Počet instalací 660
Aktuální Verze 1.1
Poslední Aktualizace 2019-10-16
Datum Vydání 2019-10-13
Hodnocení 2.17/5 Celkem 6 Hodnocení
Vývojář https://trumani.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://trumani.com/products
URL Stránky Zásad Ochrany Soukromí http://trumani.com/privacy
Podporované Jazyky 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"
        }
    ]
}