GitHub go to line number
Open-source extension which adds a go to line number modal right into GitHub
GitHub go to line number क्या है?
GitHub go to line number NicoSantangelo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open-source extension which adds a go to line number modal right into GitHub"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub go to line number एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
If you ever wanted to find a particular line number on GitHub and grew frustrated because Chrome refuses to find it, this is for you. The modal is toggled pressing ctrl+g and supports both diffs and single code files. You can cycle throughout the results using the enter key to move forward and shift+enter to move backwards.
एक्सटेंशन की मूल जानकारी
नाम | GitHub go to line number |
ID | cbpdahjcomdapkaojlbhbbmopbmbecio |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio |
विवरण | Open-source extension which adds a go to line number modal right into GitHub |
फ़ाइल का आकार | 16.24 KB |
स्थापना संख्या | 103 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2016-07-19 |
प्रकाशन तिथि | 2016-07-18 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | NicoSantangelo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/NicoSantangelo/github-go-to-line-number |
गोपनीयता नीति पृष्ठ URL | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub go to line number", "description": "Open-source extension which adds a go to line number modal right into GitHub", "short_name": "Github goto", "version": "1.2.0", "icons": { "16": "icons\/16.png", "19": "icons\/19.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "http:\/\/www.github.com\/*", "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [], "web_accessible_resources": [ "modal.html" ] } |