Restyler

A devtool extension for easy restyling of any webpage

Что такое Restyler?

Restyler - это расширение Chrome, разработанное asimen1, и его основная функция - "A devtool extension for easy restyling of any webpage".

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

screenshot
screenshot
screenshot

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

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

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

                        Restyler lets you change the appearance of any webpage with an easy to use interface.
Ongoing changes in the page are automatically observed so new styling is always taken into account.

Perfect for testing out design changes or rebranding on an existing page!

★ Modify any CSS attribute value such as font, color, margins, etc...
★ Apply styling rule to all elements in the page or to a specific set (using selectors).
★ Edit any text content in the page.
★ Share your styling rules as a config or export to CSS.                    

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

Название Restyler Restyler
ID ofkkcnbmhaodoaehikkibjanliaeffel
Официальный URL https://chromewebstore.google.com/detail/restyler/ofkkcnbmhaodoaehikkibjanliaeffel
Описание A devtool extension for easy restyling of any webpage
Размер файла 1.13 MB
Количество установок 522
Текущая Версия 1.2.1
Последнее Обновление 2019-06-24
Дата публикации 2019-06-24
Рейтинг 4.79/5 Всего 14 оценок
Разработчик asimen1
Тип оплаты free
Официальный сайт расширения https://github.com/asimen1/restyler
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Restyler",
    "description": "A devtool extension for easy restyling of any webpage",
    "version": "1.2.1",
    "minimum_chrome_version": "30.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "devtools_page": "html\/devtool\/devtoolLoader.html",
    "background": {
        "scripts": [
            "js\/background\/background.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "stylesheets\/content_scripts\/content_script.css"
            ],
            "js": [
                "js\/content_scripts\/vendor\/jquery-3.1.0.js",
                "js\/content_scripts\/core\/restyler.min.js",
                "js\/content_scripts\/content_script.min.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "",
        "tabs"
    ]
}