Notion Ding!
Goes ding when you check a notion checkbox. That's it.
¿Qué es Notion Ding!?
Notion Ding! es una extensión de Chrome desarrollada por fiveeels, y su función principal es "Goes ding when you check a notion checkbox. That's it.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Notion Ding!
Descarga archivos de extensión Notion Ding! 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
Add the "ding" sound to Notion whenever a checkbox is ticked. Finally get that satisfying sound when you finish your todo in notion. If you've been looking for how to make notion play a sound whenever you complete tasks in notion, this is it! Also: I allow you to give me your email if you're interested in hearing about future projects of mine! This is the ONLY reason why ding! collects 'personally identifiable information' as denoted in the privacy practices section. To be clear, Notion ding does zero tracking or data collection of ANY sort outside of giving you the option to provide an email. -------------------------------- V1.2 Update - Notion had an update that broken Notion Ding! This update fixes Notion Ding! as of 02/16/2024
Información Básica de la Extensión
Nombre | Notion Ding! |
ID | joikmdcpokdfcmocfafpmbailndkpjim |
URL Oficial | https://chromewebstore.google.com/detail/notion-ding/joikmdcpokdfcmocfafpmbailndkpjim |
Descripción | Goes ding when you check a notion checkbox. That's it. |
Tamaño del Archivo | 178 KB |
Cantidad de Instalaciones | 276 |
Versión Actual | 1.2.1 |
Última Actualización | 2024-02-18 |
Fecha de Publicación | 2022-08-16 |
Calificación | 4.20/5 Total de 5 Calificaciones |
Desarrollador | fiveeels |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.termsfeed.com/live/4fa94109-11cc-40c0-ba3c-f7aab7383cbe |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Ding!", "description": "Goes ding when you check a notion checkbox. That's it.", "version": "1.2.1", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.notion.so\/*" ], "css": [], "js": [ "ding-on-checked.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*.notion.so\/*" ], "resources": [ "assets\/ding.wav" ] } ], "background": { "service_worker": "background.js" }, "icons": { "16": "assets\/ding-icon.16.png", "32": "assets\/ding-icon.32.png", "48": "assets\/ding-icon.48.png", "128": "assets\/ding-icon.128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/ding-icon.16.png", "32": "assets\/ding-icon.32.png", "48": "assets\/ding-icon.48.png", "128": "assets\/ding-icon.128.png" } } } |