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
官方網址 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
}