Idioms and Phrases
Shows idiom of the day in the new tab.
Что такое Idioms and Phrases?
Idioms and Phrases - это расширение Chrome, разработанное Ravi Ojha, и его основная функция - "Shows idiom of the day in the new tab.".
Снимки экрана расширения
Скачать файл CRX расширения Idioms and Phrases
Скачайте файлы расширений Idioms and Phrases в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Consume an idiom, one in every 24 hours! Why? The idea hit me while I was reading The Martian by Andy Weir. Rich Purnell, a character in the book, is portrayed as an autistic person, having difficulty in understanding the meaning of the abstract concepts of the language. So here goes, a chrome extension that would help me and the likes of Rich Purnell become better at such play of words. Concept is to show one idiom per day, so that it gets hard-wired in our memory.
Основная информация о расширении
Название | Idioms and Phrases |
ID | ddmdooeeiphjmbcoaonbbkcadneggphh |
Официальный URL | https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh |
Описание | Shows idiom of the day in the new tab. |
Размер файла | 76.34 KB |
Количество установок | 1,635 |
Текущая Версия | 0.6 |
Последнее Обновление | 2021-11-29 |
Дата публикации | 2019-01-25 |
Рейтинг | 4.27/5 Всего 11 оценок |
Разработчик | Ravi Ojha |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://rookieslab.com/projects/idiom-of-the-day/ |
URL страницы политики конфиденциальности | https://www.rookieslab.com/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Idioms and Phrases", "description": "Shows idiom of the day in the new tab.", "version": "0.6", "incognito": "split", "chrome_url_overrides": { "newtab": "new_tab_idiom.html" }, "content_scripts": [ { "js": [ "jquery-3.2.1.min.js", "idiom.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "topSites", "chrome:\/\/favicon\/" ], "manifest_version": 2 } |