Rediff Viewer

Opens Rediff pages in Print Mode

O que é Rediff Viewer?

Rediff Viewer é uma extensão do Chrome desenvolvida por Sundarkp, e sua principal característica é "Opens Rediff pages in Print Mode".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Rediff Viewer

Baixe arquivos de extensão Rediff Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Rediff Viewer Rediff Viewer
ID iljopgjppjojkganmkfokfcdbkedoehn
URL Oficial https://chromewebstore.google.com/detail/rediff-viewer/iljopgjppjojkganmkfokfcdbkedoehn
Descrição Opens Rediff pages in Print Mode
Tamanho do Arquivo 57.8 KB
Contagem de Instalações 66
Versão Atual 1.2
Última Atualização 2014-01-31
Data de Publicação 2014-01-31
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor Sundarkp
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}