GitHub Stars Tagger
A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub.
GitHub Stars Tagger क्या है?
GitHub Stars Tagger Benoît Grélard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Stars Tagger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Add your own tags to the repositories you have starred directly on GitHub! No need to fiddle around anymore to find a repository you have starred months ago! You now have the ability to add your own tags and categorise your starred repositories the way you want to. Simply visit your /stars page and a native ui will let you add as many tags as you want on each starred repository. A neat sidebar will also display on the right hand side to show you the tags used across all starred repositories. Your tags will also follow you everywhere in every Chrome you log into. No need to jump in and out of another app or website anymore, just remain in your current workflow on github.com and enjoy!!
एक्सटेंशन की मूल जानकारी
नाम | GitHub Stars Tagger |
ID | aaihhjepepgajmehjdmfkofegfddcabc |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-stars-tagger/aaihhjepepgajmehjdmfkofegfddcabc |
विवरण | A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub. |
फ़ाइल का आकार | 135 KB |
स्थापना संख्या | 779 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2017-02-13 |
प्रकाशन तिथि | 2017-02-13 |
रेटिंग | 3.50/5 कुल 10 रेटिंग्स |
डेवलपर | Benoît Grélard |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/artisologic/github-stars-tagger |
सहायता पृष्ठ URL | https://github.com/artisologic/github-stars-tagger/issues |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Stars Tagger", "version": "1.0.3", "description": "A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub.", "author": "Beno\u00eet Gr\u00e9lard", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png", "512": "icons\/512.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/stars", "https:\/\/github.com\/stars\/", "https:\/\/github.com\/stars?*" ], "js": [ "libs\/utils.js", "libs\/TagsStore.js", "libs\/EventEmitter.js", "libs\/Model.js", "libs\/View.js", "models\/Tags.js", "views\/TagLineView.js", "views\/TagSidebarView.js", "main.js" ], "css": [ "styles\/TagLine.css", "styles\/TagSidebar.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "manifest_version": 2, "minimum_chrome_version": "45" } |