Flipkart Ratings Filter
Adds the rating filter to flipkart search pages.
Flipkart Ratings Filterคืออะไร?
Flipkart Ratings Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย srinath9795 และคุณลักษณะหลักของมันคือ "Adds the rating filter to flipkart search pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Flipkart Ratings Filter
ดาวน์โหลดไฟล์ส่วนขยาย Flipkart Ratings Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Helps in filtering search items in flipkart page according to the selected rating filters. The extension uses the same design as that of flipkart. User can select multiple filters at a time. In the present version this extension works for the following categories.. BOOKS eBooks SPORTS FITNESS MOBILES TABLETS MOBILE ACCESSORIES LAPTOPS LAPTOP ACCESSORIES COMPUTERS LANDLINE PHONES HOME ENTERTAINMENT GAMING GAMING ACCESSORIES GAMING CONSOLES GAMES GAMING COMPONENTS HOME KITCHEN PENS STATIONERY CAMERAS CAMERAS ACCESSORIES BEAUTY AND PERSONAL CARE TOYS HOME-DECOR HOME-IMPROVEMENT-TOOLS We will be back soon with the updated version for the remaining categories.. Remaining categories: All clothing related PS: This extension just filters the items but it doesn't sort them.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Flipkart Ratings Filter |
ID | fgjdlbgnijobikdpgilmmglppoigplpg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/flipkart-ratings-filter/fgjdlbgnijobikdpgilmmglppoigplpg |
คำอธิบาย | Adds the rating filter to flipkart search pages. |
ขนาดไฟล์ | 55.97 KB |
จำนวนการติดตั้ง | 136 |
เวอร์ชันปัจจุบัน | 1.0.0.1 |
อัปเดตครั้งล่าสุด | 2015-01-05 |
วันที่เผยแพร่ | 2015-01-05 |
คะแนน | 3.73/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | srinath9795 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Flipkart Ratings Filter", "description": "Adds the rating filter to flipkart search pages.", "version": "1.0.0.1", "icons": { "19": "icons\/flipblue19.png", "128": "icons\/flipblue128.png", "38": "icons\/flipblue38.png" }, "permissions": [ "storage", "tabs" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.flipkart.com\/*", "https:\/\/www.flipkart.com\/*" ], "run_at": "document_start", "js": [ "jquery-1.11.1.min.js", "myscript.js" ] } ], "page_action": { "default_title": "Flipkart Ratings Filter", "default_icon": { "19": "icons\/flipblue19.png", "38": "icons\/flipblue38.png", "128": "icons\/flipblue128.png" } } } |