Vine Leaves

Skip unacceptable scenes on Netflix

Vine Leavesคืออะไร?

Vine Leaves เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jean from VineLeaves และคุณลักษณะหลักของมันคือ "Skip unacceptable scenes on Netflix"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vine Leaves

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}