Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
Wide GitHub क्या है?
Wide GitHub xthexder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change all GitHub repository and gist pages to be full width and dynamically sized."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wide GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Features: - Read long lines of code without scrolling left to right - See more documentation at once when using large / high-dpi monitors - Easily toggleable for viewing size-dependent docs or wiki pages.
एक्सटेंशन की मूल जानकारी
नाम | Wide GitHub |
ID | kaalofacklcidaampbokdplbklpeldpj |
आधिकारिक URL | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
विवरण | Change all GitHub repository and gist pages to be full width and dynamically sized. |
फ़ाइल का आकार | 17.76 KB |
स्थापना संख्या | 7,602 |
वर्तमान संस्करण | 1.6.5 MV3 |
अंतिम अपडेट | 2024-02-07 |
प्रकाशन तिथि | 2020-06-26 |
रेटिंग | 4.55/5 कुल 66 रेटिंग्स |
डेवलपर | xthexder |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/xthexder/wide-github |
सहायता पृष्ठ URL | https://github.com/xthexder/wide-github/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wide GitHub", "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.", "version": "1.6.5", "version_name": "1.6.5 MV3", "icons": { "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon.png", "default_title": "Toggle Wide GitHub" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "css": [ "wide-github.css" ], "js": [ "wide-github-toggle.js" ] } ], "background": { "service_worker": "background.js" } } |