Rediff Viewer

Opens Rediff pages in Print Mode

Cos'è Rediff Viewer?

Rediff Viewer è un'estensione di Chrome sviluppata da Sundarkp, e la sua funzione principale è "Opens Rediff pages in Print Mode".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Rediff Viewer

Scarica i file di estensione Rediff Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Rediff Viewer Rediff Viewer
ID iljopgjppjojkganmkfokfcdbkedoehn
URL Ufficiale https://chromewebstore.google.com/detail/rediff-viewer/iljopgjppjojkganmkfokfcdbkedoehn
Descrizione Opens Rediff pages in Print Mode
Dimensione del File 57.8 KB
Conteggio Installazioni 66
Versione Corrente 1.2
Ultimo Aggiornamento 2014-01-31
Data di Pubblicazione 2014-01-31
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore Sundarkp
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}