InterviewBit

Leetcode and GeeksforGeeks links in InterviewBit

Vad är InterviewBit?

InterviewBit är en Chrome-tillägg utvecklad av satviksr, och dess huvudfunktion är "Leetcode and GeeksforGeeks links in InterviewBit".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner InterviewBit-förlängningens CRX-fil

Ladda ner InterviewBit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn InterviewBit InterviewBit
ID healhengajmbpahbgiokccdoemnnlaak
Officiell webbadress https://chromewebstore.google.com/detail/interviewbit/healhengajmbpahbgiokccdoemnnlaak
Beskrivning Leetcode and GeeksforGeeks links in InterviewBit
Filstorlek 217 KB
Antal Installationer 3,452
Aktuell Version 0.0.1
Senast Uppdaterad 2020-10-25
Publiceringsdatum 2020-10-24
Betyg 4.94/5 Totalt 16 Betyg
Utvecklare satviksr
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/satu0king/InterviewBit-Extension
Stödda Språk 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\/*"
    ]
}