Chrome Note Keeper
Chrome Note Keeper: keep notes on specific websites pages.
Was ist Chrome Note Keeper?
Chrome Note Keeper ist eine Chrome-Erweiterung, die von Alessandro Pietrantonio entwickelt wurde, und ihr Hauptmerkmal ist "Chrome Note Keeper: keep notes on specific websites pages.".
Erweiterungsscreenshots
Chrome Note Keeper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chrome Note Keeper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Chrome Note Keeper |
ID | llocbjbocnpindmhcankkhiidpfaiedp |
Offizielle URL | https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp |
Beschreibung | Chrome Note Keeper: keep notes on specific websites pages. |
Dateigröße | 31.8 KB |
Installationsanzahl | 311 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-04-22 |
Veröffentlichungsdatum | 2020-07-04 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | Alessandro Pietrantonio |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/pietrantonio91/chrome-note-keeper |
Hilfeseite URL | https://alessandropietrantonio.it/ |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |