OctoRef
Hightlight variable defenition, references
OctoRef क्या है?
OctoRef restrry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hightlight variable defenition, references"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में OctoRef एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Comfortable navigation through JavaScript or TypeScript sources on Github with adding ability to find all references for variable and its definitions. HOW TO USE:+ click – highlight references and definition – clean highlightes + click (Mac: + click) – jump to next usage place, if not in the viewport + + click (Mac: + + click) – jump to definition Report problems to https://github.com/restrry/octo-ref/issues
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ohmmdeimnfadblenffiiheeegbgddpok |
आधिकारिक URL | https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok |
विवरण | Hightlight variable defenition, references |
फ़ाइल का आकार | 3.61 MB |
स्थापना संख्या | 12 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2018-09-24 |
प्रकाशन तिथि | 2018-09-24 |
डेवलपर | restrry |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/restrry/octo-ref |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OctoRef", "description": "Hightlight variable defenition, references", "version": "0.1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "index.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ ".\/js\/contentscript.js" ], "all_frames": false } ], "permissions": [ "activeTab", "storage" ] } |