Chrome Note Keeper
Chrome Note Keeper: keep notes on specific websites pages.
什么是Chrome Note Keeper?
Chrome Note Keeper是由Alessandro Pietrantonio开发的Chrome扩展程序,该扩展的主要功能是“Chrome Note Keeper: keep notes on specific websites pages.”。
扩展截图
下载Chrome Note Keeper扩展crx文件
下载Chrome Note Keeper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Keep notes on every website page and read it whenever you want!
This extension give you the ability to write down notes about a specific web page and save it to Chrome storage.
A little badge near the extension icon notify you the presence of a note.
CHANGELOGS:
--- v1.0 ---
- Updated manifest file
- Fixes on background
--- v0.5 ---
- Fixes on icon badge
--- v0.4 ---
- Added icon badge to notify the presence of notes
--- v0.3 ---
- Added import/export to options page
- Fixes on options page
- Larger textarea on popup
- Fixes on popup
--- v0.2 ---
- Textarea label fixed
--- v0.1 ---
- First release 扩展基本信息
| 名称 | |
| ID | llocbjbocnpindmhcankkhiidpfaiedp |
| 官方URL | https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp |
| 简介 | Chrome Note Keeper: keep notes on specific websites pages. |
| 文件大小 | 31.8 KB |
| 安装次数 | 311 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-04-22 |
| 上架时间 | 2020-07-04 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | Alessandro Pietrantonio |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/pietrantonio91/chrome-note-keeper |
| 帮助页面URL | https://alessandropietrantonio.it/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chrome Note Keeper",
"version": "1.0",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/notekeeper16.png",
"32": "icons\/notekeeper32.png",
"64": "icons\/notekeeper64.png",
"128": "icons\/notekeeper128.png"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content.js"
],
"run_at": "document_idle",
"all_frames": true,
"match_about_blank": true
}
],
"options_page": "options.html",
"description": "Chrome Note Keeper: keep notes on specific websites pages.",
"icons": {
"16": "icons\/notekeeper16.png",
"32": "icons\/notekeeper32.png",
"64": "icons\/notekeeper64.png",
"128": "icons\/notekeeper128.png"
},
"background": {
"service_worker": "js\/background.js"
},
"manifest_version": 3,
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |