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