Netflix rewind x seconds

Netflix rewind or skip a parameter seconds

Vad är Netflix rewind x seconds?

Netflix rewind x seconds är en Chrome-tillägg utvecklad av wahid-moh, och dess huvudfunktion är "Netflix rewind or skip a parameter seconds".

Tilläggsskärmbilder

screenshot

Ladda ner Netflix rewind x seconds-förlängningens CRX-fil

Ladda ner Netflix rewind x seconds-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

                        Rewind / skip time on netflix movies, time can be paramtered.

Use key keyboard <  to rewind with x second
Use key keyboard >  to skip with x second
Use > or . to skip with 5 seconds (does get stuck sometimes)                    

Grundläggande Information om Tillägg

Namn Netflix rewind x seconds Netflix rewind x seconds
ID jmklaacdggogjblaiofpikjjhblhicop
Officiell webbadress https://chromewebstore.google.com/detail/netflix-rewind-x-seconds/jmklaacdggogjblaiofpikjjhblhicop
Beskrivning Netflix rewind or skip a parameter seconds
Filstorlek 8.89 KB
Antal Installationer 352
Aktuell Version 1.0
Senast Uppdaterad 2023-01-11
Publiceringsdatum 2023-01-10
Betyg 2.75/5 Totalt 4 Betyg
Utvecklare wahid-moh
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/wahid-moh/rewind-netflix
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix rewind x seconds",
    "description": "Netflix rewind or skip a parameter seconds",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "netflix-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}