InterviewBit

Leetcode and GeeksforGeeks links in InterviewBit

Co to jest InterviewBit?

InterviewBit to rozszerzenie Chrome opracowane przez satviksr, a jego główną funkcją jest „Leetcode and GeeksforGeeks links in InterviewBit”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia InterviewBit

Pobierz pliki rozszerzeń InterviewBit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa InterviewBit InterviewBit
ID healhengajmbpahbgiokccdoemnnlaak
Oficjalny URL https://chromewebstore.google.com/detail/interviewbit/healhengajmbpahbgiokccdoemnnlaak
Opis Leetcode and GeeksforGeeks links in InterviewBit
Rozmiar pliku 217 KB
Liczba instalacji 3,452
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-10-25
Data Publikacji 2020-10-24
Ocena 4.94/5 Łącznie 16 Oceny
Deweloper satviksr
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/satu0king/InterviewBit-Extension
Obsługiwane Języki 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\/*"
    ]
}