Letterboxd on Netflix

Letterboxd Ratings embedded in Netflix cards

Vad är Letterboxd on Netflix?

Letterboxd on Netflix är en Chrome-tillägg utvecklad av Letterboxd Extension, och dess huvudfunktion är "Letterboxd Ratings embedded in Netflix cards".

Tilläggsskärmbilder

screenshot

Ladda ner Letterboxd on Netflix-förlängningens CRX-fil

Ladda ner Letterboxd on 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

                        This extension shows Letterboxd ratings for Netflix films in the title card that appears when a Netflix user hovers over a film with their mouse.                    

Grundläggande Information om Tillägg

Namn Letterboxd on Netflix Letterboxd on Netflix
ID hefhhfjgeiihgbefockfepdcpipnolpo
Officiell webbadress https://chromewebstore.google.com/detail/letterboxd-on-netflix/hefhhfjgeiihgbefockfepdcpipnolpo
Beskrivning Letterboxd Ratings embedded in Netflix cards
Filstorlek 58.54 KB
Antal Installationer 49
Aktuell Version 0.1
Senast Uppdaterad 2022-10-27
Publiceringsdatum 2022-10-27
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Letterboxd Extension
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Letterboxd on Netflix",
    "description": "Letterboxd Ratings embedded in Netflix cards",
    "version": "0.1",
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/boxd-logo-dark-trans.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "host_permissions": [
        "https:\/\/www.letterboxd.com\/*",
        "https:\/\/letterboxd.com\/*",
        "https:\/\/netflix.com\/*",
        "https:\/\/www.netflix.com\/*"
    ]
}