Memo On Websites
leave a memo on each website
What is Memo On Websites?
Memo On Websites is a Chrome extension developed by wudy, and its main feature is "leave a memo on each website".
Extension Screenshots
Download Memo On Websites Extension CRX File
Download Memo On Websites extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Memo On Websites |
ID | cmcojnfblbfceeplflcbkejdodpfgjcc |
Official URL | https://chromewebstore.google.com/detail/memo-on-websites/cmcojnfblbfceeplflcbkejdodpfgjcc |
Description | leave a memo on each website |
File Size | 12.32 KB |
Installation Count | 343 |
Current Version | 1.0.0 |
Last Updated | 2017-12-07 |
Publish Date | 2017-12-06 |
Rating | 5.00/5 Total 6 Ratings |
Developer | wudy |
Payment Type | free |
Supported Languages | 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" } |