Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
Netflix Skipper क्या है?
Netflix Skipper Ran Ribenzaft द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically skip Netflix intros, recaps, and next episode prompts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Netflix Skipper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Automatically skip Netflix intros, recaps, and next episode prompts. Don't waste any more time waiting or clicking on intros, recaps, and next episode buttons. Once the extension is installed, reload or open a Netflix Tab, and it will work automatically. Through the popup, you can configure which events (intros, recaps, and next episode) you would like to skip. This extension supports ALL Netflix languages! GitHub repo: https://github.com/ranrib/netflix-skipper
एक्सटेंशन की मूल जानकारी
नाम | Netflix Skipper |
ID | lgmpgoepilkhieepoliajnandndkffab |
आधिकारिक URL | https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab |
विवरण | Automatically skip Netflix intros, recaps, and next episode prompts. |
फ़ाइल का आकार | 147 KB |
स्थापना संख्या | 3,415 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-01-27 |
प्रकाशन तिथि | 2022-01-27 |
रेटिंग | 5.00/5 कुल 9 रेटिंग्स |
डेवलपर | Ran Ribenzaft |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ranrib/netflix-skipper |
सहायता पृष्ठ URL | https://github.com/ranrib/netflix-skipper |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Skipper", "description": "Automatically skip Netflix intros, recaps, and next episode prompts.", "author": "Ran Ribenzaft", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_script.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "src\/popup.html", "default_icon": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } }, "icons": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } } |