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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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__"
    }
}