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文件

下載Memo On Websites擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}