Idioms and Phrases

Shows idiom of the day in the new tab.

Qu'est-ce que Idioms and Phrases ?

Idioms and Phrases est une extension Chrome développée par Ravi Ojha, et sa fonction principale est "Shows idiom of the day in the new tab.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Idioms and Phrases

Téléchargez les fichiers d'extension Idioms and Phrases au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Idioms and Phrases Idioms and Phrases
ID ddmdooeeiphjmbcoaonbbkcadneggphh
URL Officiel https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh
Description Shows idiom of the day in the new tab.
Taille du Fichier 76.34 KB
Nombre d'Installations 1,635
Version Actuelle 0.6
Dernière Mise à Jour 2021-11-29
Date de Publication 2019-01-25
Évaluation 4.27/5 Total 11 Évaluations
Développeur Ravi Ojha
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://rookieslab.com/projects/idiom-of-the-day/
URL de la Page de Politique de Confidentialité https://www.rookieslab.com/privacy
Langues Prises en Charge 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
}