Rediff Viewer

Opens Rediff pages in Print Mode

Co to jest Rediff Viewer?

Rediff Viewer to rozszerzenie Chrome opracowane przez Sundarkp, a jego główną funkcją jest „Opens Rediff pages in Print Mode”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Rediff Viewer

Pobierz pliki rozszerzeń Rediff Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Rediff Viewer Rediff Viewer
ID iljopgjppjojkganmkfokfcdbkedoehn
Oficjalny URL https://chromewebstore.google.com/detail/rediff-viewer/iljopgjppjojkganmkfokfcdbkedoehn
Opis Opens Rediff pages in Print Mode
Rozmiar pliku 57.8 KB
Liczba instalacji 66
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2014-01-31
Data Publikacji 2014-01-31
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper Sundarkp
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}