Trailers for Netflix

Link to movie and TV show trailers on Netflix.

Trailers for Netflix란 무엇입니까?

Trailers for Netflix은(는) Michael Schade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Link to movie and TV show trailers on Netflix."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Trailers for Netflix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Netflix is a great way to find movies, but it's always been a pain to know which show you'll like. Instead of opening a new tab and scouring the Internet for a trailer, or wasting time watching a show you might not like, this extension makes trailers just a click away. You'll see a link in the movie information popover and when viewing a specific movie's page.                    

확장 프로그램 기본 정보

이름 Trailers for Netflix Trailers for Netflix
ID ajabmkbhelefbgbjphcgffoikoiajaib
공식 URL https://chromewebstore.google.com/detail/trailers-for-netflix/ajabmkbhelefbgbjphcgffoikoiajaib
설명 Link to movie and TV show trailers on Netflix.
파일 크기 437 KB
설치 횟수 373
현재 버전 1.1
최근 업데이트 2014-08-17
출시 날짜 2014-08-16
평점 2.50/5 총 8 개의 평점
개발자 Michael Schade
결제 유형 free
확장 프로그램 웹 사이트 http://mschade.me/
도움말 페이지 URL https://github.com/michaelschade/netflix-trailers
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trailers for Netflix",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Link to movie and TV show trailers on Netflix.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/WiHome*",
                "*:\/\/www.netflix.com\/WiMovie\/*"
            ],
            "js": [
                "src\/jquery.min.js",
                "src\/trailers.user.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/jquery.min.map"
    ]
}