Save Inspect Element

Display changes made using inspect element even after refreshing the page!

Co je Save Inspect Element?

Save Inspect Element je rozšíření Chrome vyvinuté Bucky, a jeho hlavní funkcí je „Display changes made using inspect element even after refreshing the page!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Save Inspect Element

Stáhněte si soubory rozšíření Save Inspect Element 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í

                        Save all changes done through inspect element and see it after refreshing your page!

This extension has been tested on the following operating systems:

✅ MacOS | 10.13
✅ Windows 10 | 21H2
✅ Ubuntu | 20.04                    

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

Název Save Inspect Element Save Inspect Element
ID ghpfknnfhakcngbpejoakfcndhmhffkj
Oficiální URL https://chrome.google.com/webstore/detail/save-inspect-element/ghpfknnfhakcngbpejoakfcndhmhffkj
Popis Display changes made using inspect element even after refreshing the page!
Velikost souboru 90.44 KB
Počet instalací 1,891
Aktuální Verze 0.0.1
Poslední Aktualizace 2021-08-09
Datum Vydání 2021-08-09
Hodnocení 2.10/5 Celkem 10 Hodnocení
Vývojář Bucky
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://mycodding.com/privacy-policy.html
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save Inspect Element",
    "version": "0.0.1",
    "description": "Display changes made using inspect element even after refreshing the page!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}