Idioms and Phrases

Shows idiom of the day in the new tab.

O que é Idioms and Phrases?

Idioms and Phrases é uma extensão do Chrome desenvolvida por Ravi Ojha, e sua principal característica é "Shows idiom of the day in the new tab.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Idioms and Phrases

Baixe arquivos de extensão Idioms and Phrases no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Idioms and Phrases Idioms and Phrases
ID ddmdooeeiphjmbcoaonbbkcadneggphh
URL Oficial https://chromewebstore.google.com/detail/idioms-and-phrases/ddmdooeeiphjmbcoaonbbkcadneggphh
Descrição Shows idiom of the day in the new tab.
Tamanho do Arquivo 76.34 KB
Contagem de Instalações 1,635
Versão Atual 0.6
Última Atualização 2021-11-29
Data de Publicação 2019-01-25
Classificação 4.27/5 Total de 11 Avaliações
Desenvolvedor Ravi Ojha
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://rookieslab.com/projects/idiom-of-the-day/
URL da Página de Política de Privacidade https://www.rookieslab.com/privacy
Idiomas Suportados 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
}