BriskNote: New Tab Notes that Sync with Phone

Take Quick Notes on Any New Browser Tab and Sync them with your Phone

¿Qué es BriskNote: New Tab Notes that Sync with Phone?

BriskNote: New Tab Notes that Sync with Phone es una extensión de Chrome desarrollada por SysRestart, y su función principal es "Take Quick Notes on Any New Browser Tab and Sync them with your Phone".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión BriskNote: New Tab Notes that Sync with Phone

Descarga archivos de extensión BriskNote: New Tab Notes that Sync with Phone 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

                        Make your life more productive with every new browser tab you open. Take quick notes, and access them on the BriskNote mobile app and vice versa. Perfect for taking notes while having conversations, jotting down spontaneous ideas, making lists, storing pieces of code or message drafts, and so on. BriskNote is the perfect middle ground between oversimplified sticky notes and complex desktop note-taking softwares. And the best part, it's absolutely free! It also has a dark mode.                    

Información Básica de la Extensión

Nombre BriskNote: New Tab Notes that Sync with Phone BriskNote: New Tab Notes that Sync with Phone
ID gbdigbbnelhehnhlkhiepkpkedokgfog
URL Oficial https://chromewebstore.google.com/detail/brisknote-new-tab-notes-t/gbdigbbnelhehnhlkhiepkpkedokgfog
Descripción Take Quick Notes on Any New Browser Tab and Sync them with your Phone
Tamaño del Archivo 651 KB
Cantidad de Instalaciones 265
Versión Actual 0.2.1
Última Actualización 2019-04-28
Fecha de Publicación 2019-04-28
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador SysRestart
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://brisknote.com
URL de la Página de Política de Privacidad https://sysrestart.com/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BriskNote: New Tab Notes that Sync with Phone",
    "description": "Take Quick Notes on Any New Browser Tab and Sync them with your Phone",
    "version": "0.2.1",
    "version_name": "0.2.1",
    "icons": {
        "128": "media\/BriskNote_Icon_128x128.png",
        "48": "media\/BriskNote_Icon_48x48.png",
        "16": "media\/BriskNote_Icon_16x16.png"
    },
    "browser_action": {
        "default_icon": "media\/BriskNote_Icon_16x16.png"
    },
    "chrome_url_overrides": {
        "newtab": "notes.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "identity"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:5005\/auth\/*",
                "http:\/\/localhost:5006\/auth\/*",
                "http:\/\/brisknote.com\/auth\/*",
                "https:\/\/brisknote.com\/auth\/*",
                "https:\/\/api.brisknote.com\/auth\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}