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 |
| Eメール | [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:\/\/*\/*"
]
} | |