WatchedFlix

Shows you what you've watched on NetFlix.

WatchedFlix란 무엇입니까?

WatchedFlix은(는) https://www.wobblycogs.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows you what you've watched on NetFlix."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 WatchedFlix WatchedFlix
ID ljepkkookbahfpobgklopkdgpgpgngkd
공식 URL https://chromewebstore.google.com/detail/watchedflix/ljepkkookbahfpobgklopkdgpgpgngkd
설명 Shows you what you've watched on NetFlix.
파일 크기 76.72 KB
설치 횟수 70
현재 버전 1.0
최근 업데이트 2014-08-30
출시 날짜 2014-08-30
평점 3.00/5 총 4 개의 평점
개발자 https://www.wobblycogs.co.uk
결제 유형 free
확장 프로그램 웹 사이트 http://www.wobblycogs.co.uk/index.php/computing/miscellaneous/223-watchedflix
도움말 페이지 URL http://www.wobblycogs.co.uk/index.php/computing/miscellaneous/223-watchedflix
지원되는 언어 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"
    ]
}