Save Inspect Element

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

Что такое Save Inspect Element?

Save Inspect Element - это расширение Chrome, разработанное Bucky, и его основная функция - "Display changes made using inspect element even after refreshing the page!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Save Inspect Element

Скачайте файлы расширений Save Inspect Element в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Save Inspect Element Save Inspect Element
ID ghpfknnfhakcngbpejoakfcndhmhffkj
Официальный URL https://chrome.google.com/webstore/detail/save-inspect-element/ghpfknnfhakcngbpejoakfcndhmhffkj
Описание Display changes made using inspect element even after refreshing the page!
Размер файла 90.44 KB
Количество установок 1,891
Текущая Версия 0.0.1
Последнее Обновление 2021-08-09
Дата публикации 2021-08-09
Рейтинг 2.10/5 Всего 10 оценок
Разработчик Bucky
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://mycodding.com/privacy-policy.html
Поддерживаемые языки 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"
    ]
}