Chrome Note Keeper

Chrome Note Keeper: keep notes on specific websites pages.

What is Chrome Note Keeper?

Chrome Note Keeper is a Chrome extension developed by Alessandro Pietrantonio, and its main feature is "Chrome Note Keeper: keep notes on specific websites pages.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Chrome Note Keeper Extension CRX File

Download Chrome Note Keeper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Chrome Note Keeper Chrome Note Keeper
ID llocbjbocnpindmhcankkhiidpfaiedp
Official URL https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp
Description Chrome Note Keeper: keep notes on specific websites pages.
File Size 31.8 KB
Installation Count 311
Current Version 1.0
Last Updated 2022-04-22
Publish Date 2020-07-04
Rating 4.00/5 Total 1 Ratings
Developer Alessandro Pietrantonio
Email [email protected]
Payment Type free
Extension Website https://github.com/pietrantonio91/chrome-note-keeper
Help Page URL https://alessandropietrantonio.it/
Supported Languages 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:\/\/*\/*"
    ]
}