Rediff Viewer

Opens Rediff pages in Print Mode

Что такое Rediff Viewer?

Rediff Viewer - это расширение Chrome, разработанное Sundarkp, и его основная функция - "Opens Rediff pages in Print Mode".

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

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

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

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

                        Rediff is one of the popular sites in India. The site's Alexa rank is 13. On Rediff, every article is multipage filled with advertisements on each page. But in the print mode of the article, the whole article appears in one page with no ads.

This is a simple chrome extension which makes all the links on the rediff site to open in print mode.                    

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

Название Rediff Viewer Rediff Viewer
ID iljopgjppjojkganmkfokfcdbkedoehn
Официальный URL https://chromewebstore.google.com/detail/rediff-viewer/iljopgjppjojkganmkfokfcdbkedoehn
Описание Opens Rediff pages in Print Mode
Размер файла 57.8 KB
Количество установок 66
Текущая Версия 1.2
Последнее Обновление 2014-01-31
Дата публикации 2014-01-31
Рейтинг 4.00/5 Всего 2 оценок
Разработчик Sundarkp
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "name": "Rediff Viewer",
    "description": "Opens Rediff pages in Print Mode",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Rediff Viewer"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.2",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.rediff.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "rediff.js"
            ]
        }
    ]
}