Extraflix - External Ratings for Netflix

Extraflix shows external user ratings for Movies and TV Shows right where you need them: on the Netflix website.

Extraflix - External Ratings for Netflix là gì?

Extraflix - External Ratings for Netflix là một tiện ích mở rộng Chrome được phát triển bởi samgielis, và tính năng chính của nó là "Extraflix shows external user ratings for Movies and TV Shows right where you need them: on the Netflix website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Extraflix - External Ratings for Netflix

Tải xuống các tệp mở rộng Extraflix - External Ratings for Netflix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Extraflix shows trailers and external user ratings for Movies and TV Shows right where you need them: on the Netflix website. Spend more time enjoying your movie and less time checking its rating or trailers on sites like IMDb.
Extraflix comes with other options like Slow Motion & Fast Forward, hiding the annoying 'add phone number' message and Auto Pause/Play. These features can be turned on or off in the options menu.

NOTE: It is recommended to use this extensions with your netflix language settings set to English for all the options to work. 

--------------------
Version 0.6
- Fixes the long lasting font problem for all users.
Version 0.5 (current)
- Adds a Warp Speed button for slow motion and fast forward watching to the Netflix player. Optional - on by default.
- Auto Pause/Play pauses/plays the Netflix player when you move away from/get back to the Netflix tab - off by default.
- v0.5.1 to v0.5.4 are non-feature upgrades which improve the code's modularity and fix some bugs (like the missing icon font) or improve features.

Version 0.4
- Hides the annoying 'add phone number' message. Optional - off by default.
- Check the new Extraflix options page to toggle.

Version 0.3
- 'Watch trailer' button for movies.

Version 0.2
- Metacritic ratings.
- Switch between IMDb and Metacritic (externals) scores by pressing the 'i' and 'm' keys respectively.
- Automatically saves external preference for the next session.

Version 0.1
- Supports simple fetching for IMDb ratings on home and search pages.

--------------------

Possible Future Functionality
- Display functionality on other pages.
- Optimized cache.
- Separate episode ratings for series.
- Rotten Tomatoes ratings.
- Series trailers.

--------------------

Extraflix is not affiliated with Netflix, IMDb, Rotten Tomatoes or Metacritic. Extraflix is built on top of the marvelous TMDB and OMDB api's.

Thanks to Shanna (for sharing her Netflix with me) and Michel (for helping me with paying the dev. fee).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Extraflix - External Ratings for Netflix Extraflix - External Ratings for Netflix
ID anffjgkkppghaoedclpnadffmlbicdcn
URL Chính Thức https://chrome.google.com/webstore/detail/extraflix-external-rating/anffjgkkppghaoedclpnadffmlbicdcn
Mô tả Extraflix shows external user ratings for Movies and TV Shows right where you need them: on the Netflix website.
Kích Thước Tệp 259 KB
Số Lần Cài Đặt 158
Phiên Bản Hiện Tại 0.6
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 3.53/5 Tổng số 15 Đánh Giá
Nhà Phát Triển samgielis
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extraflix - External Ratings for Netflix",
    "short_name": "Extraflix",
    "description": "Extraflix shows external user ratings for Movies and TV Shows right where you need them: on the Netflix website.",
    "version": "0.6",
    "author": "Sam Gielis",
    "manifest_version": 2,
    "options_ui": {
        "page": ".\/options\/options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/*.netflix.com\/browse\/*",
        "https:\/\/*.netflix.com\/search\/*",
        "https:\/\/*.netflix.com\/title\/*",
        "https:\/\/*.netflix.com\/watch\/*",
        "https:\/\/github.com\/FortAwesome\/Font-Awesome\/tree\/master\/fonts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/browse\/*",
                "https:\/\/*.netflix.com\/search\/*",
                "https:\/\/*.netflix.com\/title\/*",
                "https:\/\/*.netflix.com\/watch\/*"
            ],
            "js": [
                "extraflix.js",
                ".\/utils\/jquery.min.js",
                ".\/utils\/efx-general-utils.js",
                ".\/utils\/efx-player-utils.js",
                ".\/utils\/magnific-popup.obf.js"
            ],
            "css": [
                ".\/css\/extraflix.css",
                ".\/css\/fonts.css",
                ".\/css\/extraflix-deps.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "extraflix.js",
        ".\/css\/extraflix.css",
        ".\/utils\/jquery.js",
        ".\/utils\/magnific-popup.obf.js",
        ".\/utils\/efx-general-utils.js",
        ".\/utils\/efx-player-utils.js",
        ".\/css\/*",
        "\/fonts\/*.woff2"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}