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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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
}