NoMeeting

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

NoMeetingとは何ですか?

NoMeetingはhttps://nomeeting.orgによって開発されたChromeの拡張機能で、その主な機能は「Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.」です。

拡張機能のスクリーンショット

screenshot

NoMeeting拡張機能のCRXファイルをダウンロード

NoMeeting拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 NoMeeting NoMeeting
ID afgbeglpkgmmbkbhpkfmmabdpfbejlef
公式URL https://chromewebstore.google.com/detail/nomeeting/afgbeglpkgmmbkbhpkfmmabdpfbejlef
説明 Changes the word 'meeting' into the word 'review' when you type it, so that people always come prepared to future gatherings.
ファイルサイズ 144 KB
インストール数 20
現在のバージョン 2.0.1
最終更新日 2018-09-26
公開日 2018-09-26
開発者 https://nomeeting.org
支払い方法 free
拡張機能のウェブサイト https://nomeeting.org/
ヘルプページのURL https://nomeeting.org/support
対応言語 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__"
    }
}