Vine Leaves

Skip unacceptable scenes on Netflix

什麼是Vine Leaves?

Vine Leaves是由Jean from VineLeaves開發的Chrome擴展程式,該擴展的主要功能是“Skip unacceptable scenes on Netflix”。

擴展截圖

screenshot

下載Vine Leaves擴展crx文件

下載Vine Leaves擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Vine Leaves
ID gfdecfnmecgdnjfhapnocmhopelfegbn
官方網址 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"
    }
}