GitHub Code Folding
Enable code folding when viewing files in GitHub.
GitHub Code Folding क्या है?
GitHub Code Folding noam3127 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable code folding when viewing files in GitHub."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Code Folding एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Code folding - the ability to selectively hide and display sections of a code - is an invaluable feature in many text editors and IDEs. Now, developers can utilize that same style code-folding while poring over source code on the web in GitHub. Works for any type of indentation, spaces or tabs. --- CHANGELOG --- v0.3.3 - handle multi-level nested blocks v0.3.2 - don't expand previously collapsed inner block when expanding outer block - styling fix that prevented copying code v0.3.1 - remove host permission v0.3.0 - migrate manifest to v3 - update permissions - fix styling v0.2.0 - fix to use CSS selectors from updated github markup - run on bbgithub v0.1.1 - fix missing css file v0.1.0 - remove jQuery dependency - use event page instead of permanent background
एक्सटेंशन की मूल जानकारी
नाम | GitHub Code Folding |
ID | lefcpjbffalgdcdgidjdnmabfenecjdf |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-code-folding/lefcpjbffalgdcdgidjdnmabfenecjdf |
विवरण | Enable code folding when viewing files in GitHub. |
फ़ाइल का आकार | 1.06 MB |
स्थापना संख्या | 3,328 |
वर्तमान संस्करण | 0.3.3 |
अंतिम अपडेट | 2022-07-14 |
प्रकाशन तिथि | 2019-04-10 |
रेटिंग | 5.00/5 कुल 16 रेटिंग्स |
डेवलपर | noam3127 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/noam3127/github-code-folding |
सहायता पृष्ठ URL | https://github.com/noam3127/github-code-folding/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Code Folding", "version": "0.3.3", "description": "Enable code folding when viewing files in GitHub.", "homepage_url": "https:\/\/github.com\/noam3127\/github-code-folding", "manifest_version": 3, "minimum_chrome_version": "88", "author": "Noam Lustiger", "short_name": "Github Code Folding", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/github.com\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "icons": { "128": "images\/icon-128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/github.com\/*" ], "css": [ "style.css" ] } ] } |