Save Inspect Element

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

Co to jest Save Inspect Element?

Save Inspect Element to rozszerzenie Chrome opracowane przez Bucky, a jego główną funkcją jest „Display changes made using inspect element even after refreshing the page!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Save Inspect Element

Pobierz pliki rozszerzeń Save Inspect Element w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Save Inspect Element Save Inspect Element
ID ghpfknnfhakcngbpejoakfcndhmhffkj
Oficjalny URL https://chrome.google.com/webstore/detail/save-inspect-element/ghpfknnfhakcngbpejoakfcndhmhffkj
Opis Display changes made using inspect element even after refreshing the page!
Rozmiar pliku 90.44 KB
Liczba instalacji 1,891
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2021-08-09
Data Publikacji 2021-08-09
Ocena 2.10/5 Łącznie 10 Oceny
Deweloper Bucky
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://mycodding.com/privacy-policy.html
Obsługiwane Języki 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"
    ]
}