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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 |
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" ] } ] } |