Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
Qu'est-ce que Expand & Collapse ?
Expand & Collapse est une extension Chrome développée par achamsanjeevakumar, et sa fonction principale est "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Expand & Collapse
Téléchargez les fichiers d'extension Expand & Collapse au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Expand & Collapse |
ID | odeomhdjffbnnobalkalehmidefcdmkn |
URL Officiel | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
Description | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
Taille du Fichier | 21.13 KB |
Nombre d'Installations | 76 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-02-17 |
Date de Publication | 2021-02-17 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | achamsanjeevakumar |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/achamsanjeeva/ExpandCollapse |
URL de la Page d'Aide | https://github.com/achamsanjeeva/ExpandCollapse |
Langues Prises en Charge | 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" } } |