Netflix List Exporter
An Extension to export your lists from Netflix to Clipboard area and share with your friends.
Netflix List Exporter क्या है?
Netflix List Exporter https://daltonmenezes.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An Extension to export your lists from Netflix to Clipboard area and share with your friends."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Netflix List Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
[How to use] At netflix.com/browse/my-list page, you will see three new buttons to handle the list you want to export from Netflix. Choose one and wait for the message stating that copy to the clipboard is done. Then press CTRL + V or COMMAND + V to paste the list wherever you want. [Support me on this and other projects] - Patreon: www.patreon.com/daltonmenezes
एक्सटेंशन की मूल जानकारी
नाम | Netflix List Exporter |
ID | mkhmjimpmgfjejbemjbimepeifijlagc |
आधिकारिक URL | https://chromewebstore.google.com/detail/netflix-list-exporter/mkhmjimpmgfjejbemjbimepeifijlagc |
विवरण | An Extension to export your lists from Netflix to Clipboard area and share with your friends. |
फ़ाइल का आकार | 27.07 KB |
स्थापना संख्या | 1,248 |
वर्तमान संस्करण | 2.2.3 |
अंतिम अपडेट | 2022-08-07 |
प्रकाशन तिथि | 2020-05-09 |
रेटिंग | 4.00/5 कुल 13 रेटिंग्स |
डेवलपर | https://daltonmenezes.github.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/daltonmenezes/netflix-list-exporter |
सहायता पृष्ठ URL | https://github.com/daltonmenezes/netflix-list-exporter/issues |
समर्थित भाषाएँ | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix List Exporter", "description": "__MSG_extensionDescription__", "version": "2.2.3", "homepage_url": "https:\/\/github.com\/daltonmenezes\/netflix-list-exporter", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "run_at": "document_end", "css": [ "css\/button.css", "css\/popup.css" ], "js": [ "content_scripts\/inject-script.js", "content_scripts\/creators\/my-list-creator.js", "content_scripts\/creators\/thumbs-list-creator.js", "content_scripts\/list-handler.js", "content_scripts\/ui\/button-render.js", "content_scripts\/ui\/buttons\/my-list.js", "content_scripts\/ui\/buttons\/thumbs-up-list.js", "content_scripts\/ui\/buttons\/thumbs-down-list.js", "content_scripts\/ui\/popup-render.js", "content_scripts\/events\/copying.js", "content_scripts\/events\/scroll.js", "content_scripts\/events\/click.js", "content_scripts\/events\/popup.js", "content_scripts\/write-to-clipboard.js", "content_scripts\/events\/clipboard.js", "content_scripts\/observer.js" ] } ], "page_action": { "default_icon": { "48": "icons\/48.png", "96": "icons\/96.png" } }, "icons": { "48": "icons\/48.png", "96": "icons\/96.png" }, "permissions": [ "*:\/\/*.netflix.com\/*", "clipboardWrite" ], "default_locale": "en" } |