Get Netflix Trailers

Netflix trailers, just got so much easier. Just click on the link added above the movie.

什麼是Get Netflix Trailers?

Get Netflix Trailers是由smithmot3開發的Chrome擴展程式,該擴展的主要功能是“Netflix trailers, just got so much easier. Just click on the link added above the movie.”。

擴展截圖

screenshot
screenshot

下載Get Netflix Trailers擴展crx文件

下載Get Netflix Trailers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The easiest and most convenient way to see Movie Trailers and IMDB ratings while browsing on Netflix. With this chrome extension it makes it so much easier, no copy paste or typing it out. You don't even have to leave the page. Just simply click the red 'play trailer' button added above the movie or tv-show you're interested in. The top half of the screen will display trailer, letting continue to browse while the trailer plays.

-- Updates made to fix the extension due to Netflix updates.
-- Updated rating API.                    

擴展基本資訊

名稱 Get Netflix Trailers Get Netflix Trailers
ID ccnidblbfndpbnceipcgihpfpolpkfkc
官方網址 https://chromewebstore.google.com/detail/get-netflix-trailers/ccnidblbfndpbnceipcgihpfpolpkfkc
簡介 Netflix trailers, just got so much easier. Just click on the link added above the movie.
檔案大小 39.16 KB
安裝次數 255
目前版本 0.1.7
更新時間 2018-08-01
上架時間 2018-07-31
評分 2.55/5 共 11 次評分
開發者 smithmot3
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get Netflix Trailers",
    "short_name": "GNT",
    "description": "Netflix trailers, just got so much easier. Just click on the link added above the movie.",
    "version": "0.1.7",
    "icons": {
        "128": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "logo.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "http:\/\/www.netflix.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ]
}