Rediff Viewer

Opens Rediff pages in Print Mode

Rediff Viewer란 무엇입니까?

Rediff Viewer은(는) Sundarkp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens Rediff pages in Print Mode"입니다.

확장 프로그램 스크린샷

Rediff Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}