PageChopper

Modify current page for printing.

Что такое PageChopper?

PageChopper - это расширение Chrome, разработанное https://brispace.us, и его основная функция - "Modify current page for printing.".

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

screenshot

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

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

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

                        PageChopper is my attempt to recreate an old extension called Aardvark that allowed the user to remove elements from the current web page in order to make it better for printing.  You move your mouse pointer over an item and press a key (for example 'r' to remove the item).  A list of the command keys is displayed whenever you activate the extension.  You may remove items, isolate an item (i.e. remove all other items), convert the page to black and white, remove all images, or remove extra whitespace. You may undo any of your changes.                    

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

Название PageChopper PageChopper
ID bcdjdbiiohahlfdochlfbbplnfgakhmk
Официальный URL https://chromewebstore.google.com/detail/pagechopper/bcdjdbiiohahlfdochlfbbplnfgakhmk
Описание Modify current page for printing.
Размер файла 11.18 KB
Количество установок 70
Текущая Версия 1.0
Последнее Обновление 2018-02-27
Дата публикации 2018-02-27
Рейтинг 3.00/5 Всего 2 оценок
Разработчик https://brispace.us
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://brispace.us/blog/title/Modify_Web_Pages_For_Printing_With_PageChopper
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PageChopper",
    "description": "Modify current page for printing.",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Modify page for printing"
    },
    "permissions": [
        "activeTab"
    ]
}