Hammer for smashing page

Hammer gives you a quick, easy and satisfying way to remove unnecessary elements and get a clean and pretty page for you to enjoy.

Что такое Hammer for smashing page?

Hammer for smashing page - это расширение Chrome, разработанное sakal, и его основная функция - "Hammer gives you a quick, easy and satisfying way to remove unnecessary elements and get a clean and pretty page for you to enjoy.".

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

Скачать файл CRX расширения Hammer for smashing page

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

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

                        Hammer extension gives you a quick, easy and satisfying way to remove unnecessary elements and get a clean and pretty page for you to enjoy.

I hope this extension will make the everyday easier for people working with web, text, and HTML.

This can be helpful for people who who don't like sticky headers on page and others ugly elements that make difficult to read page.                    

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

Название Hammer for smashing page Hammer for smashing page
ID gicbggcmjgdbiclnfcmiapnfeanljnmo
Официальный URL https://chromewebstore.google.com/detail/hammer-for-smashing-page/gicbggcmjgdbiclnfcmiapnfeanljnmo
Описание Hammer gives you a quick, easy and satisfying way to remove unnecessary elements and get a clean and pretty page for you to enjoy.
Размер файла 9.8 KB
Количество установок 165
Текущая Версия 1.0.4
Последнее Обновление 2019-02-09
Дата публикации 2019-02-05
Рейтинг 5.00/5 Всего 1 оценок
Разработчик sakal
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/sakalx/hammer/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hammer for smashing page",
    "short_name": "Hammer",
    "description": "Hammer gives you a quick, easy and satisfying way to remove unnecessary elements and get a clean and pretty page for you to enjoy.",
    "version": "1.0.4",
    "author": "Serhii Sakal",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "favicon\/icon16.png",
            "32": "favicon\/icon32.png"
        },
        "default_title": "Smash this page \ud83d\udd28"
    },
    "icons": {
        "16": "favicon\/icon16.png",
        "32": "favicon\/icon32.png",
        "48": "favicon\/icon48.png",
        "128": "favicon\/icon128.png"
    }
}