Inspector Saver

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

Что такое Inspector Saver?

Inspector Saver - это расширение Chrome, разработанное https://trumani.com, и его основная функция - "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.".

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

screenshot

Скачать файл CRX расширения Inspector Saver

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

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

                        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.                    

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

Название Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
Официальный URL https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
Описание Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
Размер файла 135 KB
Количество установок 660
Текущая Версия 1.1
Последнее Обновление 2019-10-16
Дата публикации 2019-10-13
Рейтинг 2.17/5 Всего 6 оценок
Разработчик https://trumani.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://trumani.com/products
URL страницы политики конфиденциальности http://trumani.com/privacy
Поддерживаемые языки 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"
        }
    ]
}