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
官方URL 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\/*"
    ]
}