Notifi Me

Discord Notification Plugin

Что такое Notifi Me?

Notifi Me - это расширение Chrome, разработанное https://www.notifime.co.uk, и его основная функция - "Discord Notification Plugin".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Notifi Me

Скачайте файлы расширений 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\/*"
    ]
}