InterviewBit
Leetcode and GeeksforGeeks links in InterviewBit
什麼是InterviewBit?
InterviewBit是由satviksr開發的Chrome擴展程式,該擴展的主要功能是“Leetcode and GeeksforGeeks links in InterviewBit”。
擴展截圖
下載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 |
ID | healhengajmbpahbgiokccdoemnnlaak |
官方網址 | 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\/*" ] } |