Notion Ding!

Goes ding when you check a notion checkbox. That's it.

Notion Ding!란 무엇입니까?

Notion Ding!은(는) fiveeels에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Goes ding when you check a notion checkbox. That's it."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Notion Ding! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Notion Ding! Notion Ding!
ID joikmdcpokdfcmocfafpmbailndkpjim
공식 URL https://chromewebstore.google.com/detail/notion-ding/joikmdcpokdfcmocfafpmbailndkpjim
설명 Goes ding when you check a notion checkbox. That's it.
파일 크기 178 KB
설치 횟수 276
현재 버전 1.2.1
최근 업데이트 2024-02-18
출시 날짜 2022-08-16
평점 4.20/5 총 5 개의 평점
개발자 fiveeels
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.termsfeed.com/live/4fa94109-11cc-40c0-ba3c-f7aab7383cbe
지원되는 언어 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"
        }
    }
}