InterviewBit
Leetcode and GeeksforGeeks links in InterviewBit
What is InterviewBit?
InterviewBit is a Chrome extension developed by satviksr, and its main feature is "Leetcode and GeeksforGeeks links in InterviewBit".
Extension Screenshots
Download InterviewBit Extension CRX File
Download InterviewBit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension embeds Leetcode and GeeksforGeeks links in InterviewBit. This helps users find the same question in InterviewBit on other coding platforms.
Extension Basic Information
Name | InterviewBit |
ID | healhengajmbpahbgiokccdoemnnlaak |
Official URL | https://chromewebstore.google.com/detail/interviewbit/healhengajmbpahbgiokccdoemnnlaak |
Description | Leetcode and GeeksforGeeks links in InterviewBit |
File Size | 217 KB |
Installation Count | 3,452 |
Current Version | 0.0.1 |
Last Updated | 2020-10-25 |
Publish Date | 2020-10-24 |
Rating | 4.94/5 Total 16 Ratings |
Developer | satviksr |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/satu0king/InterviewBit-Extension |
Supported Languages | 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\/*" ] } |