Notion Notification Manager

Notion notification manager extension helps you to group notions notification.

什麼是Notion Notification Manager?

Notion Notification Manager是由Alex Plugaru開發的Chrome擴展程式,該擴展的主要功能是“Notion notification manager extension helps you to group notions notification.”。

擴展截圖

screenshot

下載Notion Notification Manager擴展crx文件

下載Notion Notification Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Disclaimer: this chrome extension is not associated with notion.so in any shape or form. They don't support it, we don't offer support for it, we don't accept external PRs or bug reports. Feel free to use it however you please, but don't complain about it.

Chrome extension with various notion.so improvements. Ex: better notification grouping, follow/unfollow buttons and mass archive of notifications.                    

擴展基本資訊

名稱 Notion Notification Manager Notion Notification Manager
ID egginfgblieggoobgalpjoimncnabdlh
官方網址 https://chromewebstore.google.com/detail/notion-notification-manag/egginfgblieggoobgalpjoimncnabdlh
簡介 Notion notification manager extension helps you to group notions notification.
檔案大小 353 KB
安裝次數 156
目前版本 0.0.9
更新時間 2022-12-01
上架時間 2022-08-16
評分 5.00/5 共 2 次評分
開發者 Alex Plugaru
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/gorgias/better-notion
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Notification Manager",
    "version": "0.0.9",
    "description": "Notion notification manager extension helps you to group notions notification.",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/notion_16x16.png",
        "32": "icons\/notion_32x32.png",
        "48": "icons\/notion_48x48.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/notion_16x16.png",
            "32": "icons\/notion_32x32.png",
            "48": "icons\/notion_48x48.png"
        }
    },
    "host_permissions": [
        "https:\/\/www.notion.so\/*"
    ],
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "lib\/js\/jquery-3.5.1.min.js",
                "contentScript\/injectScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "run_at": "document_end",
            "all_frames": false,
            "css": [
                "css\/custom.css"
            ],
            "js": [
                "config.json.js",
                "constant.js",
                "lib\/js\/jquery-3.5.1.min.js",
                "contentScript\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "contentScript\/*.js"
            ]
        }
    ],
    "content_security_policy": []
}