Idioms and Phrases

Shows idiom of the day in the new tab.

什么是Idioms and Phrases?

Idioms and Phrases是由Ravi Ojha开发的Chrome扩展程序,该扩展的主要功能是“Shows idiom of the day in the new tab.”。

扩展截图

screenshot
screenshot

下载Idioms and Phrases扩展crx文件

下载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 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
}