Permanent Inspect Element

Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing

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

Permanent Inspect Element - это расширение Chrome, разработанное Mehran Jalali, и его основная функция - "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

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

screenshot

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

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

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

                        This extension lets you save the changes you make to a static web page using Inspect Element to remain there even after you refresh the page.  So if you want to modify a web page to make it easier for you to read, or to remove an intrusive banner, you can do that, and you wouldn't have to re-do it every time you visit the page again.

Of course, this only changes the content of the page on *your* computer and not the website itself.                    

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

Название Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
Официальный URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Описание Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Размер файла 109 KB
Количество установок 71,918
Текущая Версия 0.1.1
Последнее Обновление 2020-08-11
Дата публикации 2020-08-03
Рейтинг 2.92/5 Всего 204 оценок
Разработчик Mehran Jalali
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Permanent Inspect Element",
    "version": "0.1.1",
    "description": "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing",
    "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"
    ]
}