Chrome Note Keeper

Chrome Note Keeper: keep notes on specific websites pages.

¿Qué es Chrome Note Keeper?

Chrome Note Keeper es una extensión de Chrome desarrollada por Alessandro Pietrantonio, y su función principal es "Chrome Note Keeper: keep notes on specific websites pages.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Chrome Note Keeper

Descarga archivos de extensión Chrome Note Keeper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Chrome Note Keeper Chrome Note Keeper
ID llocbjbocnpindmhcankkhiidpfaiedp
URL Oficial https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp
Descripción Chrome Note Keeper: keep notes on specific websites pages.
Tamaño del Archivo 31.8 KB
Cantidad de Instalaciones 311
Versión Actual 1.0
Última Actualización 2022-04-22
Fecha de Publicación 2020-07-04
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador Alessandro Pietrantonio
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/pietrantonio91/chrome-note-keeper
URL de la Página de Ayuda https://alessandropietrantonio.it/
Idiomas Soportados 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:\/\/*\/*"
    ]
}