Vine Leaves
Skip unacceptable scenes on Netflix
Vine Leaves क्या है?
Vine Leaves Jean from VineLeaves द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Skip unacceptable scenes on Netflix"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Vine Leaves एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |