IMDB Rating in Netflix

Displays IMDb ratings in Netflix

Vad är IMDB Rating in Netflix?

IMDB Rating in Netflix är en Chrome-tillägg utvecklad av akshatgadhwal72, och dess huvudfunktion är "Displays IMDb ratings in Netflix".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner IMDB Rating in Netflix-förlängningens CRX-fil

Ladda ner IMDB Rating in Netflix-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

                        Provides Premium Netflix Viewing Experience with IMDb ratings for imformed decision making
- Minimalist UI, Lowest Distraction
- High Availability
- Life Time Validity

For every item ( even for the featured content at the top), you will see a IMDb rating or "N/A" if the item is not yet rated.                    

Grundläggande Information om Tillägg

Namn IMDB Rating in Netflix IMDB Rating in Netflix
ID llkcekkggahemmlbhmkcacabceginpcf
Officiell webbadress https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf
Beskrivning Displays IMDb ratings in Netflix
Filstorlek 6.38 KB
Antal Installationer 43
Aktuell Version 1.0
Senast Uppdaterad 2023-11-28
Publiceringsdatum 2023-04-10
Betyg 5.00/5 Totalt 8 Betyg
Utvecklare akshatgadhwal72
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "IMDB Rating in Netflix",
    "version": "1.0",
    "description": "Displays IMDb ratings in Netflix",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Information Page"
    }
}