Idioms and Phrases

Shows idiom of the day in the new tab.

Cos'è Idioms and Phrases?

Idioms and Phrases è un'estensione di Chrome sviluppata da Ravi Ojha, e la sua funzione principale è "Shows idiom of the day in the new tab.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Idioms and Phrases

Scarica i file di estensione Idioms and Phrases in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Idioms and Phrases Idioms and Phrases
ID ddmdooeeiphjmbcoaonbbkcadneggphh
URL Ufficiale https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh
Descrizione Shows idiom of the day in the new tab.
Dimensione del File 76.34 KB
Conteggio Installazioni 1,635
Versione Corrente 0.6
Ultimo Aggiornamento 2021-11-29
Data di Pubblicazione 2019-01-25
Valutazione 4.27/5 Totale 11 Valutazioni
Sviluppatore Ravi Ojha
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://rookieslab.com/projects/idiom-of-the-day/
URL della Pagina della Politica sulla Privacy https://www.rookieslab.com/privacy
Lingue Supportate 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
}