GitHub Remarks
a chrome extension that can give github repos your own remarks
GitHub Remarks क्या है?
GitHub Remarks hanzichi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "a chrome extension that can give github repos your own remarks"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Remarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
a chrome extension that can give github repos your own remarks
एक्सटेंशन की मूल जानकारी
नाम | GitHub Remarks |
ID | pkepkgjchpahghcfdmdokoonapagblem |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
विवरण | a chrome extension that can give github repos your own remarks |
फ़ाइल का आकार | 178 KB |
स्थापना संख्या | 45 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2018-05-28 |
प्रकाशन तिथि | 2018-05-27 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | hanzichi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hanzichi/github-remarks |
सहायता पृष्ठ URL | https://github.com/hanzichi/github-remarks/issues |
समर्थित भाषाएँ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Remarks", "manifest_version": 2, "version": "1.2.1", "description": "a chrome extension that can give github repos your own remarks", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "", "default_icon": { "19": "icons\/icon_19.png", "38": "icons\/icon_38.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "js": [ "content-scripts\/repoDetail.js" ], "css": [], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*" ], "js": [ "lib\/jquery.min.js", "lib\/list.min.js", "content-scripts\/stars.js" ], "css": [], "run_at": "document_end" } ] } |