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
}