NoMeeting

Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.

O que é NoMeeting?

NoMeeting é uma extensão do Chrome desenvolvida por https://nomeeting.org, e sua principal característica é "Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NoMeeting

Baixe arquivos de extensão NoMeeting 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

                        Changes the word "meeting" into the word "review" when you type it, so that people always come prepared to future gatherings. Learn more: https://productsofdesign.sva.edu/blog/nomeeting

Based off of the delightful https://chrome.google.com/webstore/detail/auto-text-expander-for-go/iibninhmiggehlcdolcilmhacighjamp?hl=en

Original Code: https://github.com/carlinyuen/ChromeAutoTextExpander
This modified version: https://github.com/cromulus/ChromeAutoTextExpander                    

Informações Básicas da Extensão

Nome NoMeeting NoMeeting
ID afgbeglpkgmmbkbhpkfmmabdpfbejlef
URL Oficial https://chromewebstore.google.com/detail/nomeeting/afgbeglpkgmmbkbhpkfmmabdpfbejlef
Descrição Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.
Tamanho do Arquivo 144 KB
Contagem de Instalações 20
Versão Atual 2.0.1
Última Atualização 2018-09-26
Data de Publicação 2018-09-26
Desenvolvedor https://nomeeting.org
Tipo de Pagamento free
Site da Extensão https://nomeeting.org/
URL da Página de Ajuda https://nomeeting.org/support
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_EXTENSION_NAME__",
    "short_name": "__MSG_EXTENSION_SHORTNAME__",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "__MSG_EXTENSION_DESCRIPTION__",
    "icons": {
        "16": "images\/nomeeting.png",
        "48": "images\/nomeeting.png",
        "128": "images\/nomeeting.png"
    },
    "default_locale": "en",
    "offline_enabled": true,
    "background": {
        "scripts": [
            "scripts\/chromereload.js",
            "scripts\/constants.js",
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "",
        "notifications",
        "clipboardRead"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "vendor\/scripts\/jquery-2.1.1-simplified.min.js",
                "vendor\/scripts\/moment-with-locales.min.js",
                "scripts\/constants.js",
                "scripts\/ate.js"
            ],
            "run_at": "document_start"
        }
    ],
    "omnibox": {
        "keyword": "__MSG_KEYWORD_OMNIBAR_TRIGGER__"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/nomeeting.png",
            "38": "images\/nomeeting.png"
        },
        "default_title": "__MSG_BROWSER_ACTION_TITLE__"
    }
}