HideFlix
Allows you to hide or tint unwanted Netflix shows from your feed.
HideFlix क्या है?
HideFlix Rico द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to hide or tint unwanted Netflix shows from your feed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HideFlix एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension lets you hide or tint any Netflix movies in your feed. Usage: Two ways to add movies to the list to be tinted or hidden: 1) Right click on any movie when hovered over them and select "Hide/Tint this title" 2) Enable Quick Edit Mode on the Extension's option page There are several other options in the extension's option page such as switching between Hide/Tint for your list of Netflix titles or clear your saved list. Permission: Context Menu: this is an alternate way to add a movie to the list in addition to edit mode. Chrome Storage: this is used for remembering your list of movies to be tinted or hidden.
एक्सटेंशन की मूल जानकारी
नाम | HideFlix |
ID | dagapekicoclgkbodnjgddcaednhapnl |
आधिकारिक URL | https://chromewebstore.google.com/detail/hideflix/dagapekicoclgkbodnjgddcaednhapnl |
विवरण | Allows you to hide or tint unwanted Netflix shows from your feed. |
फ़ाइल का आकार | 17.89 KB |
स्थापना संख्या | 76 |
वर्तमान संस्करण | 1.3.2 |
अंतिम अपडेट | 2018-01-10 |
प्रकाशन तिथि | 2018-01-10 |
रेटिंग | 4.33/5 कुल 3 रेटिंग्स |
डेवलपर | Rico |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "short_name": "HideFlix", "name": "HideFlix", "description": "Allows you to hide or tint unwanted Netflix shows from your feed.", "version": "1.3.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "css": [ "dropdown.css" ], "js": [ "Remove.js" ] } ], "background": { "persistent": true, "scripts": [ "popup.js" ] }, "permissions": [ "activeTab", "storage", "unlimitedStorage", "contextMenus" ] } |