Netfix

Netfix removes the auto playing previews on Netflix.

Netfix क्या है?

Netfix Samuel Kadolph द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Netfix removes the auto playing previews on Netflix."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Netfix एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Tired of Netflix's auto playing preview ads? Install this extension and those will be disabled!

Code available at https://github.com/samuelkadolph/netfix.

Report issues at https://github.com/samuelkadolph/netfix/issues.

Changelog:

v0.3.0
- Switched to block network requests for the preview videos
- Added option to turn preview blocking on and off

v0.2.0
- Added options page
- Added option to hide the whole billboard instead of just the preview video

v0.1.7
- Replaced placeholder 16x16 icon

v0.1.6
- Now removes the preview video when returning to the browse page                    

एक्सटेंशन की मूल जानकारी

नाम Netfix Netfix
ID dlceeplebocldajolniciioiliocihco
आधिकारिक URL https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco
विवरण Netfix removes the auto playing previews on Netflix.
फ़ाइल का आकार 14.26 KB
स्थापना संख्या 216
वर्तमान संस्करण 0.3.0
अंतिम अपडेट 2017-12-10
प्रकाशन तिथि 2017-12-09
रेटिंग 3.33/5 कुल 12 रेटिंग्स
डेवलपर Samuel Kadolph
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/samuelkadolph/netfix
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "javascripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "javascripts\/netfix.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "description": "Netfix removes the auto playing previews on Netflix.",
    "icons": {
        "16": "images\/icon16.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "name": "Netfix",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "https:\/\/*.nflxvideo.net\/*",
        "https:\/\/www.netflix.com\/*",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "short_name": "Netfix",
    "version": "0.3.0"
}