Idioms and Phrases
Shows idiom of the day in the new tab.
What is Idioms and Phrases?
Idioms and Phrases is a Chrome extension developed by Ravi Ojha, and its main feature is "Shows idiom of the day in the new tab.".
Extension Screenshots
Download Idioms and Phrases Extension CRX File
Download Idioms and Phrases extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Idioms and Phrases |
ID | ddmdooeeiphjmbcoaonbbkcadneggphh |
Official URL | https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh |
Description | Shows idiom of the day in the new tab. |
File Size | 76.34 KB |
Installation Count | 1,635 |
Current Version | 0.6 |
Last Updated | 2021-11-29 |
Publish Date | 2019-01-25 |
Rating | 4.27/5 Total 11 Ratings |
Developer | Ravi Ojha |
[email protected] | |
Payment Type | free |
Extension Website | https://rookieslab.com/projects/idiom-of-the-day/ |
Privacy Policy Page URL | https://www.rookieslab.com/privacy |
Supported Languages | 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 } |