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
擴展基本資訊
名稱 | Chrome Note Keeper |
ID | llocbjbocnpindmhcankkhiidpfaiedp |
官方網址 | 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:\/\/*\/*" ] } |