InterviewBit

Leetcode and GeeksforGeeks links in InterviewBit

Что такое InterviewBit?

InterviewBit - это расширение Chrome, разработанное satviksr, и его основная функция - "Leetcode and GeeksforGeeks links in InterviewBit".

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

screenshot
screenshot

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

Скачайте файлы расширений InterviewBit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension embeds Leetcode and GeeksforGeeks links in InterviewBit. This helps users find the same question in InterviewBit on other coding platforms.                    

Основная информация о расширении

Название InterviewBit InterviewBit
ID healhengajmbpahbgiokccdoemnnlaak
Официальный URL https://chromewebstore.google.com/detail/interviewbit/healhengajmbpahbgiokccdoemnnlaak
Описание Leetcode and GeeksforGeeks links in InterviewBit
Размер файла 217 KB
Количество установок 3,452
Текущая Версия 0.0.1
Последнее Обновление 2020-10-25
Дата публикации 2020-10-24
Рейтинг 4.94/5 Всего 16 оценок
Разработчик satviksr
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/satu0king/InterviewBit-Extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "InterviewBit",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Leetcode and GeeksforGeeks links in InterviewBit",
    "homepage_url": "https:\/\/www.interviewbit.com\/courses\/programming\/",
    "icons": {
        "16": "icons\/ib.png",
        "48": "icons\/ib.png",
        "128": "icons\/ib.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/www.interviewbit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.interviewbit.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.interviewbit.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/*",
        "icons\/*"
    ]
}