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
扩展基本信息
名称 | Expand & Collapse |
ID | odeomhdjffbnnobalkalehmidefcdmkn |
官方URL | 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" } } |