Memo On Websites

leave a memo on each website

Memo On Websites란 무엇입니까?

Memo On Websites은(는) wudy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "leave a memo on each website"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Memo On Websites 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        leave a memo on each website easily.

+ Sub domains are treated as separate websites.

(Example)
docs.google.com
map.google.com

+ Except for www

(Example)
www.google.com -> google.com                    

확장 프로그램 기본 정보

이름 Memo On Websites Memo On Websites
ID cmcojnfblbfceeplflcbkejdodpfgjcc
공식 URL https://chromewebstore.google.com/detail/memo-on-websites/cmcojnfblbfceeplflcbkejdodpfgjcc
설명 leave a memo on each website
파일 크기 12.32 KB
설치 횟수 343
현재 버전 1.0.0
최근 업데이트 2017-12-07
출시 날짜 2017-12-06
평점 5.00/5 총 6 개의 평점
개발자 wudy
결제 유형 free
지원되는 언어 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Memo On Websites",
    "author": "koosi",
    "homepage_url": "https:\/\/github.com\/koosi",
    "version": "1.0.0",
    "default_locale": "en",
    "description": "__MSG_extShortDesc__",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/disable_icon_128.png",
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "minimum_chrome_version": "22.0",
    "short_name": "MemoOnWebsites"
}