Letterboxd Movie Assistant
Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant
Was ist Letterboxd Movie Assistant?
Letterboxd Movie Assistant ist eine Chrome-Erweiterung, die von ludovicodigital entwickelt wurde, und ihr Hauptmerkmal ist "Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant".
Erweiterungsscreenshots
Letterboxd Movie Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Letterboxd Movie Assistant-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
Adds an icon in the address bar that comes up on Imdb and Rotten Tomatoes film pages. By pressing this icon a new tab will open that goes to the letterboxd film page. *Note: This extension is not made by the letterboxd team but someone who is a big fan of their site! Update 4/17/15 - Fixed the bug with Rotten Tomatoes so its now working again from there! Update 1/13/19 - Extension still works for IMDB but no longer works with Rotten Tomatoes since they removed their public API.
Grundlegende Informationen zur Erweiterung
Name | Letterboxd Movie Assistant |
ID | dlicmihnogpoemhcegbnhbmncbkoidjo |
Offizielle URL | https://chromewebstore.google.com/detail/letterboxd-movie-assistan/dlicmihnogpoemhcegbnhbmncbkoidjo |
Beschreibung | Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant |
Dateigröße | 127 KB |
Installationsanzahl | 2,103 |
Aktuelle Version | 0.2 |
Letztes Update | 2019-01-14 |
Veröffentlichungsdatum | 2019-01-13 |
Bewertung | 4.54/5 Insgesamt 24 Bewertungen |
Entwickler | ludovicodigital |
Zahlungsart | free |
Erweiterungswebsite | http://letterboxd.com/tcrosini/ |
Hilfeseite URL | http://letterboxd.com/tcrosini/list/letterboxd-movie-assistant-chrome-extension/ |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Letterboxd Movie Assistant", "version": "0.2", "description": "Shows a page action for imdb\/rotten tomatoes film pages to go to the letterboxd equivalant", "background": { "scripts": [ "background.js", "jquery.min.js" ] }, "page_action": { "default_icon": "icon-19.png", "default_title": "Go to this films letterboxd page!" }, "permissions": [ "tabs", "http:\/\/api.rottentomatoes.com\/api\/public\/v1.0*", "http:\/\/www.rottentomatoes.com\/*", "http:\/\/www.imdb.com\/*", "http:\/\/letterboxd.com\/*" ], "icons": { "48": "icon-48.png", "128": "icon-128.png" } } |