Rediff Viewer

Opens Rediff pages in Print Mode

什麼是Rediff Viewer?

Rediff Viewer是由Sundarkp開發的Chrome擴展程式,該擴展的主要功能是“Opens Rediff pages in Print Mode”。

擴展截圖

下載Rediff Viewer擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}