Netflix Stop Autoplay

Stop netflix from autoplaying!

Vad är Netflix Stop Autoplay?

Netflix Stop Autoplay är en Chrome-tillägg utvecklad av marcdwyer1738, och dess huvudfunktion är "Stop netflix from autoplaying!".

Tilläggsskärmbilder

screenshot

Ladda ner Netflix Stop Autoplay-förlängningens CRX-fil

Ladda ner Netflix Stop Autoplay-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Prevents Netflix from autoplaying videos on the homepage.

Recently Netflix has allowed users to disable autoplaying content on their website. For more details on how to disable see here: https://help.netflix.com/en/node/2102.


Experience any issues? Open up an issue in the repository or e-mail me at [email protected]!

https://github.com/MarcDwyer/netflix-stop-autoplay


changelog:
2.7.0 
A lot less code and more efficient
2.5.0:
   Reverted some optimizations as it introduced new bugs                    

Grundläggande Information om Tillägg

Namn Netflix Stop Autoplay Netflix Stop Autoplay
ID fbcmkdogjehincilpicohipinoobijem
Officiell webbadress https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem
Beskrivning Stop netflix from autoplaying!
Filstorlek 455 KB
Antal Installationer 143
Aktuell Version 2.7
Senast Uppdaterad 2020-09-13
Publiceringsdatum 2020-05-24
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare marcdwyer1738
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/MarcDwyer/netflix-stop-autoplay
Hjälpsida URL https://github.com/MarcDwyer/netflix-stop-autoplay
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Stop Autoplay",
    "description": "Stop netflix from autoplaying!",
    "version": "2.7",
    "browser_action": {
        "default_icon": "icon_green.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/",
                "https:\/\/www.netflix.com\/browse",
                "https:\/\/www.netflix.com\/browse\/*",
                "https:\/\/www.netflix.com\/browse\/*\/**"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon_green.png",
        "48": "icon_green.png",
        "128": "icon_green.png"
    },
    "permissions": [
        "storage"
    ]
}