github-find
A plugin for searcing within Github repos.
github-find क्या है?
github-find Aidan Feldman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A plugin for searcing within Github repos."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में github-find एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear. Check out the source here: https://github.com/afeld/github-find
एक्सटेंशन की मूल जानकारी
नाम | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
विवरण | A plugin for searcing within Github repos. |
फ़ाइल का आकार | 40.7 KB |
स्थापना संख्या | 164 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2013-02-18 |
प्रकाशन तिथि | 2013-02-17 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Aidan Feldman |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/afeld/github-find |
सहायता पृष्ठ URL | https://github.com/afeld/github-find/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-find", "version": "1.0.2", "manifest_version": 2, "icons": { "16": "favicon.ico" }, "description": "A plugin for searcing within Github repos.", "homepage_url": "https:\/\/github.com\/afeld\/github-find", "background": { "scripts": [ "jquery-1.9.1.min.js", "background.js" ], "persistent": false }, "page_action": { "default_icon": "favicon.ico", "default_title": "Click or press Ctrl+Shift+F to search this repository." }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*github.com\/*\/" ], "js": [ "jquery-1.9.1.min.js", "jquery.ui.position.min.js", "content-keydown.js" ] } ], "permissions": [ "tabs" ] } |