NoMeeting

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

Qu'est-ce que NoMeeting ?

NoMeeting est une extension Chrome développée par https://nomeeting.org, et sa fonction principale est "Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NoMeeting

Téléchargez les fichiers d'extension NoMeeting 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

                        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                    

Informations de Base sur l'Extension

Nom NoMeeting NoMeeting
ID afgbeglpkgmmbkbhpkfmmabdpfbejlef
URL Officiel https://chromewebstore.google.com/detail/nomeeting/afgbeglpkgmmbkbhpkfmmabdpfbejlef
Description Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.
Taille du Fichier 144 KB
Nombre d'Installations 20
Version Actuelle 2.0.1
Dernière Mise à Jour 2018-09-26
Date de Publication 2018-09-26
Développeur https://nomeeting.org
Type de Paiement free
Site Web de l'Extension https://nomeeting.org/
URL de la Page d'Aide https://nomeeting.org/support
Langues Prises en Charge 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__"
    }
}