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
Eメール [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
}