Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
什麼是Expand & Collapse?
Expand & Collapse是由achamsanjeevakumar開發的Chrome擴展程式,該擴展的主要功能是“Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform”。
擴展截圖
下載Expand & Collapse擴展crx文件
下載Expand & Collapse擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Modern editors provide code expand & collapse feature which enables the user to navigate the code easily. Same doesn't exist for web version of github.
Expand & Collapse tool provides same functionality. It supports prominent languages Java, JavaScript, C , C++, PHP,R,Swift 擴展基本資訊
| 名稱 | |
| ID | odeomhdjffbnnobalkalehmidefcdmkn |
| 官方網址 | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
| 簡介 | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
| 檔案大小 | 21.13 KB |
| 安裝次數 | 76 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2021-02-17 |
| 上架時間 | 2021-02-17 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | achamsanjeevakumar |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/achamsanjeeva/ExpandCollapse |
| 說明頁面URL | https://github.com/achamsanjeeva/ExpandCollapse |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Expand & Collapse",
"description": "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform",
"homepage_url": "https:\/\/github.com\/achamsanjeeva\/ExpandCollapse",
"version": "1.0.0",
"author": "Acham Sanjeeva Kumar",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"storage",
"*:\/\/*.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/16x16.png",
"32": "\/images\/32x32.png",
"48": "\/images\/48x48.png",
"128": "\/images\/128x128.png"
}
},
"icons": {
"16": "\/images\/16x16.png",
"32": "\/images\/32x32.png",
"48": "\/images\/48x48.png",
"128": "\/images\/128x128.png"
}
} | |