IMDB Improver

This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!

IMDB Improver란 무엇입니까?

IMDB Improver은(는) http://www.evanbrynne.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!"입니다.

확장 프로그램 스크린샷

screenshot

IMDB Improver 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension currently has a couple of features. Firstly, it adds ratings next to episode names when viewing seasons of TV shows. I find myself all the time looking to show a friend the best episodes from one series or another that I like. This makes it way easier to find those that are objectively good, as well as the ones I know I love. 

Also, via the options page it lets you manage the sections visible on tv/movie pages, letting you hide the side bar, the 'Contribute' section, or most of the others. This functionality will be periodically extended to include more sections as I discover them.

It was a fun little experiment that seemed like it'd be useful, and I've got some exciting new features coming soon!                    

확장 프로그램 기본 정보

이름 IMDB Improver IMDB Improver
ID keopalbcihdpcnkeocdncagjgodhjkfe
공식 URL https://chrome.google.com/webstore/detail/imdb-improver/keopalbcihdpcnkeocdncagjgodhjkfe
설명 This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!
파일 크기 14.96 KB
설치 횟수 50
현재 버전 1.1.0
최근 업데이트 2012-11-23
출시 날짜 2012-11-23
평점 4.00/5 총 5 개의 평점
개발자 http://www.evanbrynne.com
결제 유형 free
확장 프로그램 웹 사이트 http://www.evanbrynne.com/projects/imdbchrome
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDB Improver",
    "manifest_version": 2,
    "version": "1.1.0",
    "permissions": [
        "storage"
    ],
    "description": "This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!",
    "page_action": {
        "default_icon": "imdb_48.png",
        "default_title": "Fixing your imdb!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/*\/episodes*",
                "https:\/\/www.imdb.com\/*\/episodes*"
            ],
            "js": [
                "add_scores.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/www.imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ],
            "js": [
                "clean_page.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "imdb_16.png",
        "48": "imdb_48.png",
        "128": "imdb_128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}