HideFlix

Allows you to hide or tint unwanted Netflix shows from your feed.

HideFlix란 무엇입니까?

HideFlix은(는) Rico에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to hide or tint unwanted Netflix shows from your feed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension lets you hide or tint any Netflix movies in your  feed.

Usage:
Two ways to add movies to the list to be tinted or hidden:
1) Right click on any movie when hovered over them and select "Hide/Tint this title"
2) Enable Quick Edit Mode on the Extension's option page

There are several other options in the extension's option page such as switching between Hide/Tint for your list of Netflix titles or clear your saved list.


Permission:
Context Menu: this is an alternate way to add a movie to the list in addition to edit mode.
Chrome Storage: this is used for remembering your list of movies to be tinted or hidden.                    

확장 프로그램 기본 정보

이름 HideFlix HideFlix
ID dagapekicoclgkbodnjgddcaednhapnl
공식 URL https://chromewebstore.google.com/detail/hideflix/dagapekicoclgkbodnjgddcaednhapnl
설명 Allows you to hide or tint unwanted Netflix shows from your feed.
파일 크기 17.89 KB
설치 횟수 76
현재 버전 1.3.2
최근 업데이트 2018-01-10
출시 날짜 2018-01-10
평점 4.33/5 총 3 개의 평점
개발자 Rico
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "HideFlix",
    "name": "HideFlix",
    "description": "Allows you to hide or tint unwanted Netflix shows from your feed.",
    "version": "1.3.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "css": [
                "dropdown.css"
            ],
            "js": [
                "Remove.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "popup.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ]
}