Letterboxd Rotten Tomatoes Addon
Adds Rotten Tomatoes features to Letterboxd.com
Was ist Letterboxd Rotten Tomatoes Addon?
Letterboxd Rotten Tomatoes Addon ist eine Chrome-Erweiterung, die von WilliamWelsh entwickelt wurde, und ihr Hauptmerkmal ist "Adds Rotten Tomatoes features to Letterboxd.com".
Erweiterungsscreenshots
Letterboxd Rotten Tomatoes Addon-Erweiterungs-CRX-Datei herunterladen
Laden Sie Letterboxd Rotten Tomatoes Addon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gbagfhlcandjadfocmenciejcgncjmfd |
| Offizielle URL | https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd |
| Beschreibung | Adds Rotten Tomatoes features to Letterboxd.com |
| Dateigröße | 22.73 KB |
| Installationsanzahl | 283 |
| Aktuelle Version | 1.9 |
| Letztes Update | 2019-01-22 |
| Veröffentlichungsdatum | 2019-01-21 |
| Bewertung | 3.60/5 Insgesamt 10 Bewertungen |
| Entwickler | WilliamWelsh |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon |
| Hilfeseite URL | https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon |
| Unterstützte Sprachen | 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"
}
]
} | |