Filmaffinity on Netflix

This extension shows filmaffitniy.es ratings on Nerflix

Filmaffinity on Netflix란 무엇입니까?

Filmaffinity on Netflix은(는) mik.corcuera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows filmaffitniy.es ratings on Nerflix"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Filmaffinity on Netflix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Show Filmaffinity ratings on Netflix shows and movies. It shows the average user ratings, as well as the distribution of professional ratings.

As an adition, it will also show Carlos Boyero's reviews on the side                    

확장 프로그램 기본 정보

이름 Filmaffinity on Netflix Filmaffinity on Netflix
ID eomlaphpmjmgkbjfloohiageaomhogjp
공식 URL https://chromewebstore.google.com/detail/filmaffinity-on-netflix/eomlaphpmjmgkbjfloohiageaomhogjp
설명 This extension shows filmaffitniy.es ratings on Nerflix
파일 크기 882 KB
설치 횟수 88
현재 버전 0.2.0
최근 업데이트 2020-01-13
출시 날짜 2020-01-13
평점 4.11/5 총 9 개의 평점
개발자 mik.corcuera
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mcorcuera/netflix-filmaffinity
도움말 페이지 URL https://github.com/mcorcuera/netflix-filmaffinity/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "0.2.0",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/boyero-head.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.netflix.com\/*",
                "https:\/\/www.netflix.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "contentSettings",
        "contextMenus",
        "management",
        "pageCapture",
        "webNavigation",
        "webRequest",
        "https:\/\/*.filmaffinity.es\/*",
        "https:\/\/*.filmaffinity.com\/*"
    ]
}