More Ratings on Letterboxd
See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
ما هو More Ratings on Letterboxd؟
More Ratings on Letterboxd هو إضافة Chrome تم تطويرها بواسطة UofT Student 2020، والميزة الرئيسية لها هي "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة More Ratings on Letterboxd
قم بتنزيل ملفات الامتداد More Ratings on Letterboxd بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This chrome extension will fetch and embed IMDB, Rotten Tomatoes, and Metacritic ratings right onto the Letterboxd film page. You can also show and hide ratings right on the chrome extension. Source code is at https://github.com/EKarton/More-Ratings-on-Letterboxd. Open contributions to the source code are welcome. Thank you!
معلومات أساسية عن التمديد
الاسم | More Ratings on Letterboxd |
ID | daohigojkjlijcphfhelkcepldnenike |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike |
الوصف | See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd |
حجم الملف | 129 KB |
عدد التثبيتات | 266 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-09-02 |
تاريخ النشر | 2021-09-02 |
تقييم | 5.00/5 مجموع تقييمات 7 |
المطور | UofT Student 2020 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/EKarton/More-Ratings-on-Letterboxd |
عنوان صفحة المساعدة | https://github.com/EKarton/More-Ratings-on-Letterboxd/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "More Ratings on Letterboxd", "description": "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd", "version": "1.0.0", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "css": [ "content-scripts\/styles.css" ], "js": [ "content-scripts\/index.js" ] } ], "action": { "default_title": "More Ratings on Letterboxd", "default_popup": "popup\/index.html", "default_icon": { "16": "\/assets\/icons\/icon16.png", "32": "\/assets\/icons\/icon32.png", "48": "\/assets\/icons\/icon48.png", "128": "\/assets\/icons\/icon128.png" } }, "icons": { "16": "\/assets\/icons\/icon16.png", "32": "\/assets\/icons\/icon32.png", "48": "\/assets\/icons\/icon48.png", "128": "\/assets\/icons\/icon128.png" } } |