WatchedFlix

Shows you what you've watched on NetFlix.

WatchedFlix là gì?

WatchedFlix là một tiện ích mở rộng Chrome được phát triển bởi https://www.wobblycogs.co.uk, và tính năng chính của nó là "Shows you what you've watched on NetFlix.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WatchedFlix

Tải xuống các tệp mở rộng WatchedFlix 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

                        WatchedFlix makes it quick and easy to see what you've already watched on NetFlix. It shows you when you watched a Movie and how you rated it.

Features:

* Twelve filtering styles
* Choose what information is shown on filtered items
* Show / hide the main information box
* Automatic or manual database updating

Permissions: Uses a small amount of local storage to hold information about what you've watched. This can be cleared at any time from the options page.

Disclaimer: Netflix registered trademarks and have no affiliation to this extension.                    

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

Tên WatchedFlix WatchedFlix
ID ljepkkookbahfpobgklopkdgpgpgngkd
URL Chính Thức https://chromewebstore.google.com/detail/watchedflix/ljepkkookbahfpobgklopkdgpgpgngkd
Mô tả Shows you what you've watched on NetFlix.
Kích Thước Tệp 76.72 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-08-30
Ngày Phát Hành 2014-08-30
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://www.wobblycogs.co.uk
Loại Thanh Toán free
Trang Web Mở Rộng http://www.wobblycogs.co.uk/index.php/computing/miscellaneous/223-watchedflix
URL Trang Trợ Giúp http://www.wobblycogs.co.uk/index.php/computing/miscellaneous/223-watchedflix
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "version": "1.0",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "page": "pageAction.html"
    },
    "page_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "pageAction.html",
        "default_title": "WatchedFlix"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.blockUI.js",
                "options.js",
                "watchedFlix.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.gif",
        "images\/*.jpg"
    ]
}