Vine Leaves
Skip unacceptable scenes on Netflix
Vine Leaves란 무엇입니까?
Vine Leaves은(는) Jean from VineLeaves에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip unacceptable scenes on Netflix"입니다.
확장 프로그램 스크린샷
Vine Leaves 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension allowing to automatically skip thousands of nudity scenes on Netflix as well as any scene you define yourself. Please subscribe on our website: https://vine-leaves.com. The extension allows you to choose the level of filter (all, severe only, none) for each type of scenes to filter (nudity, violence). In addition the extension adds a link to IMDB Parental Guidance on each title card as well as the number of filtered scenes. This extension has been developed using the work of this repository: https://github.com/Nebual/netflix-skipper
확장 프로그램 기본 정보
이름 | Vine Leaves |
ID | gfdecfnmecgdnjfhapnocmhopelfegbn |
공식 URL | https://chromewebstore.google.com/detail/vine-leaves/gfdecfnmecgdnjfhapnocmhopelfegbn |
설명 | Skip unacceptable scenes on Netflix |
파일 크기 | 353 KB |
설치 횟수 | 28 |
현재 버전 | 0.2.18 |
최근 업데이트 | 2023-06-07 |
출시 날짜 | 2021-10-01 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Jean from VineLeaves |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://vine-leaves.com |
도움말 페이지 URL | https://vine-leaves.com |
개인정보 보호 정책 페이지 URL | https://www.vine-leaves.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "0.2.18", "default_locale": "en", "permissions": [ "activeTab", "declarativeContent", "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "icon_128.png", "38": "icon_128.png" }, "default_title": "__MSG_extName__", "default_popup": "index.html", "show_matches": [ "*:\/\/www.netflix.com\/*" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.netflix.com\/*" ], "js": [ "content_script.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/www.netflix.com\/*" ] }, "web_accessible_resources": [ "scenes\/*.json", "vendor\/lz-string.js", "page.js", "icon_128.png", "pg_128.png" ], "content_security_policy": "script-src 'self' 'sha256-3Nk0h1ySFVujoJ\/alFFje\/Tl0DmKbR6oRF+IZkLL9CY='; object-src 'self'", "icons": { "32": "icon_32.png", "64": "icon_64.png", "128": "icon_128.png" } } |