InterviewBit

Leetcode and GeeksforGeeks links in InterviewBit

什么是InterviewBit?

InterviewBit是由satviksr开发的Chrome扩展程序,该扩展的主要功能是“Leetcode and GeeksforGeeks links in InterviewBit”。

扩展截图

screenshot
screenshot

下载InterviewBit扩展crx文件

下载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\/*"
    ]
}