Flipkart Ratings Filter

Adds the rating filter to flipkart search pages.

Flipkart Ratings Filter란 무엇입니까?

Flipkart Ratings Filter은(는) srinath9795에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the rating filter to flipkart search pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Flipkart Ratings Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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