ShuffleFlix - Netflix Random Episode Button
This chrome extension adds a random episode button to Netflix.
ShuffleFlix - Netflix Random Episode Button क्या है?
ShuffleFlix - Netflix Random Episode Button https://www.flixed.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This chrome extension adds a random episode button to Netflix."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ShuffleFlix - Netflix Random Episode Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Here's how you use ShuffleFlix. 1. Install the extension. 2. Click on any TV show. Next to "Episodes" you should see a "Random Episode" button. 3. If you're in the middle of playing an episode, you'll se a new button in the bottom right corner of the screen. It should look like two twin arrows. Click it, and you can switch to a random episode from there too. Enjoy! Developed by Flixed.io - A one-stop shop for learning about streaming and cord-cutting.
एक्सटेंशन की मूल जानकारी
नाम | ShuffleFlix - Netflix Random Episode Button |
ID | copfkimibpnfpdggfjencnehgfgmpphf |
आधिकारिक URL | https://chromewebstore.google.com/detail/shuffleflix-netflix-rando/copfkimibpnfpdggfjencnehgfgmpphf |
विवरण | This chrome extension adds a random episode button to Netflix. |
फ़ाइल का आकार | 423 KB |
स्थापना संख्या | 1,659 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2019-06-16 |
प्रकाशन तिथि | 2019-06-16 |
रेटिंग | 3.72/5 कुल 18 रेटिंग्स |
डेवलपर | https://www.flixed.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://flixed.io |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ShuffleFlix - Netflix Random Episode Button", "version": "1.0.0", "version_name": "1.0.0", "description": "This chrome extension adds a random episode button to Netflix.", "icons": { "128": "\/img\/logo.png" }, "browser_action": { "default_icon": "\/img\/logo.png", "default_popup": "\/pages\/popup\/index.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "\/js\/main_content_script.js" ] } ], "permissions": [ "https:\/\/www.netflix.com\/*" ], "web_accessible_resources": [ "\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net; object-src 'self'" } |