Letterboxd Rotten Tomatoes Addon

Adds Rotten Tomatoes features to Letterboxd.com

Vad är Letterboxd Rotten Tomatoes Addon?

Letterboxd Rotten Tomatoes Addon är en Chrome-tillägg utvecklad av WilliamWelsh, och dess huvudfunktion är "Adds Rotten Tomatoes features to Letterboxd.com".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Letterboxd Rotten Tomatoes Addon-förlängningens CRX-fil

Ladda ner Letterboxd Rotten Tomatoes Addon-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 will offer a button on Letterboxd film pages that directs you to the Rotten Tomatoes equivalent. It also shows the score, and icon, under the title on film pages.                    

Grundläggande Information om Tillägg

Namn Letterboxd Rotten Tomatoes Addon Letterboxd Rotten Tomatoes Addon
ID gbagfhlcandjadfocmenciejcgncjmfd
Officiell webbadress https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd
Beskrivning Adds Rotten Tomatoes features to Letterboxd.com
Filstorlek 22.73 KB
Antal Installationer 283
Aktuell Version 1.9
Senast Uppdaterad 2019-01-22
Publiceringsdatum 2019-01-21
Betyg 3.60/5 Totalt 10 Betyg
Utvecklare WilliamWelsh
Betalningssätt free
Tilläggswebbplats https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
Hjälpsida URL https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Letterboxd Rotten Tomatoes Addon",
    "version": "1.9",
    "description": "Adds Rotten Tomatoes features to Letterboxd.com",
    "permissions": [
        "https:\/\/www.omdbapi.com\/*",
        "https:\/\/www.rottentomatoes.com\/m\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}