Issue Inspector
Preview the most upvoted comments for github issues without scrolling
Issue Inspector क्या है?
Issue Inspector Xetera द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Preview the most upvoted comments for github issues without scrolling"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Issue Inspector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Instantly find the solution you're looking for in GitHub issues. Issue Inspector ranks each comment on issues by the reactions. Comments with many +1 and heart are probably solutions so they go at the top. This project is still a work in production. If you encounter any bugs, feel free to open up a uh... GitHub issue on the repository
एक्सटेंशन की मूल जानकारी
नाम | Issue Inspector |
ID | jcekpjkpiblmimjfbejfdkngbmdgaeen |
आधिकारिक URL | https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen |
विवरण | Preview the most upvoted comments for github issues without scrolling |
फ़ाइल का आकार | 29.83 KB |
स्थापना संख्या | 109 |
वर्तमान संस्करण | 3.1.0 |
अंतिम अपडेट | 2023-01-08 |
प्रकाशन तिथि | 2020-03-20 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Xetera |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Xetera/issue-inspector |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Issue Inspector", "description": "Preview the most upvoted comments for github issues without scrolling", "version": "3.1.0", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "magnifying_glass.png", "default_popup": "popup.html" }, "icons": { "128": "magnifying_glass.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_end", "js": [ "js\/content_script.js" ] } ], "web_accessible_resources": [ "*.png" ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "webNavigation" ] } |