Notion Notification Manager

Notion notification manager extension helps you to group notions notification.

Notion Notification Manager क्या है?

Notion Notification Manager Alex Plugaru द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notion notification manager extension helps you to group notions notification."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion Notification Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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": []
}