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. 扩展基本信息
| 名称 | |
| ID | lhoaebkagfpaglcedmehlkbmchagmimj |
| 官方URL | 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"
}
}
}
} | |