Notifi Me

Discord Notification Plugin

什麼是Notifi Me?

Notifi Me是由https://www.notifime.co.uk開發的Chrome擴展程式,該擴展的主要功能是“Discord Notification Plugin”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Notifi Me擴展crx文件

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

擴展使用說明

                        Never miss a Discord notification with Notifi Me. Follow both users and servers within our Chrome plugin and be notified as soon as someone you’re following sends a message within Discord.                    

擴展基本資訊

名稱 Notifi Me Notifi Me
ID ebclklcomnpckcnijpmcnfinmblmcbig
官方網址 https://chrome.google.com/webstore/detail/notifi-me/ebclklcomnpckcnijpmcnfinmblmcbig
簡介 Discord Notification Plugin
檔案大小 2.78 MB
安裝次數 27
目前版本 2.0.2
更新時間 2021-12-21
上架時間 2021-12-18
評分 4.50/5 共 2 次評分
開發者 https://www.notifime.co.uk
電子郵箱 [email protected]
擴展官網 https://www.notifime.co.uk
說明頁面URL https://www.notifime.co.uk/faqs
隱私政策頁面URL https://www.notifime.co.uk/privacypolicy
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notifi Me",
    "description": "Discord Notification Plugin",
    "version": "2.0.2",
    "background": {
        "scripts": [
            ".\/js\/moment.min.js",
            ".\/js\/config.js",
            ".\/js\/core.js",
            ".\/js\/background\/webRequestBlocking.js",
            ".\/js\/background\/junkRemover.js",
            ".\/js\/background\/discordRequests.js",
            ".\/js\/background\/checkSubscription.js",
            ".\/js\/background\/firstTimeInitialisator.js",
            ".\/js\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/NotifiMeFavicon.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*.svg",
        "images\/attachment-icon.svg",
        "images\/mainLogo.svg",
        "images\/*.png",
        "NotifiMeFavicon.png",
        "roboto\/*.ttf"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/discord.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/discord.com\/*"
            ],
            "js": [
                ".\/js\/moment.min.js",
                ".\/js\/core.js",
                ".\/js\/config.js",
                ".\/js\/content.js",
                ".\/js\/elementsForContentPage.js"
            ],
            "css": [
                ".\/css\/content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/discord.com\/*",
                "*:\/\/lfadekapajfccibjekflllljcnildhij\/*"
            ],
            "js": [
                ".\/js\/moment.min.js",
                ".\/js\/core.js",
                ".\/js\/config.js",
                ".\/js\/discordContent.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/moment.min.js",
                ".\/js\/core.js",
                ".\/js\/config.js",
                ".\/js\/elementsForContentPage.js",
                ".\/js\/contentNotifications.js"
            ],
            "css": [
                ".\/css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking",
        "clipboardRead",
        "*:\/\/discord.com\/*",
        "*:\/\/lfadekapajfccibjekflllljcnildhij\/*",
        "*:\/\/cdn.discordapp.com\/*",
        "*:\/\/notifime-app.herokuapp.com\/*"
    ]
}