Idioms and Phrases

Shows idiom of the day in the new tab.

Was ist Idioms and Phrases?

Idioms and Phrases ist eine Chrome-Erweiterung, die von Ravi Ojha entwickelt wurde, und ihr Hauptmerkmal ist "Shows idiom of the day in the new tab.".

Erweiterungsscreenshots

screenshot
screenshot

Idioms and Phrases-Erweiterungs-CRX-Datei herunterladen

Laden Sie Idioms and Phrases-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Idioms and Phrases Idioms and Phrases
ID ddmdooeeiphjmbcoaonbbkcadneggphh
Offizielle URL https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh
Beschreibung Shows idiom of the day in the new tab.
Dateigröße 76.34 KB
Installationsanzahl 1,635
Aktuelle Version 0.6
Letztes Update 2021-11-29
Veröffentlichungsdatum 2019-01-25
Bewertung 4.27/5 Insgesamt 11 Bewertungen
Entwickler Ravi Ojha
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://rookieslab.com/projects/idiom-of-the-day/
URL der Datenschutzrichtlinien-Seite https://www.rookieslab.com/privacy
Unterstützte Sprachen 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
}