Rediff Viewer

Opens Rediff pages in Print Mode

ما هو Rediff Viewer؟

Rediff Viewer هو إضافة Chrome تم تطويرها بواسطة Sundarkp، والميزة الرئيسية لها هي "Opens Rediff pages in Print Mode".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة Rediff Viewer

قم بتنزيل ملفات الامتداد Rediff Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}