Chrome Note Keeper

Chrome Note Keeper: keep notes on specific websites pages.

Qu'est-ce que Chrome Note Keeper ?

Chrome Note Keeper est une extension Chrome développée par Alessandro Pietrantonio, et sa fonction principale est "Chrome Note Keeper: keep notes on specific websites pages.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chrome Note Keeper

Téléchargez les fichiers d'extension Chrome Note Keeper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Chrome Note Keeper Chrome Note Keeper
ID llocbjbocnpindmhcankkhiidpfaiedp
URL Officiel https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp
Description Chrome Note Keeper: keep notes on specific websites pages.
Taille du Fichier 31.8 KB
Nombre d'Installations 311
Version Actuelle 1.0
Dernière Mise à Jour 2022-04-22
Date de Publication 2020-07-04
Évaluation 4.00/5 Total 1 Évaluations
Développeur Alessandro Pietrantonio
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/pietrantonio91/chrome-note-keeper
URL de la Page d'Aide https://alessandropietrantonio.it/
Langues Prises en Charge 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:\/\/*\/*"
    ]
}