Web Notes
Allows user to stick notes for specific url.
什麼是Web Notes?
Web Notes是由https://sunnysinghdev.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Allows user to stick notes for specific url.”。
擴展截圖
下載Web Notes擴展crx文件
下載Web Notes擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.
擴展基本資訊
名稱 | Web Notes |
ID | lhoaebkagfpaglcedmehlkbmchagmimj |
官方網址 | https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj |
簡介 | Allows user to stick notes for specific url. |
檔案大小 | 37.45 KB |
安裝次數 | 254 |
目前版本 | 0.1 |
更新時間 | 2018-01-19 |
上架時間 | 2018-01-18 |
評分 | 5.00/5 共 1 次評分 |
開發者 | https://sunnysinghdev.blogspot.com |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Notes", "version": "0.1", "description": "Allows user to stick notes for specific url.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ], "permissions": [ "storage", "tabs", "activeTab" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "commands": { "toggle-feature": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "Toggle the helpcenter screen", "global": true }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+9", "mac": "Command+Shift+9", "chromeos": "Ctrl+Shift+9", "linux": "Ctrl+Shift+9" } } } } |