Awesome Stars
Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
Awesome Stars क्या है?
Awesome Stars henry40408 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Awesome Stars is a chrome extension that shows you stars of repository on awesome list."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Awesome Stars एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Awesome Stars is a chrome extension that shows you stars of repository on awesome list. - README: https://github.com/henry40408/awesome-stars/blob/master/README.md - CHANGELOG: https://github.com/henry40408/awesome-stars/blob/master/CHANGELOG.md - GitHub: https://github.com/henry40408/awesome-stars Feel free to contribute!
एक्सटेंशन की मूल जानकारी
नाम | Awesome Stars |
ID | lcokkcbdmicofdahlooopcpinogephfb |
आधिकारिक URL | https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb |
विवरण | Awesome Stars is a chrome extension that shows you stars of repository on awesome list. |
फ़ाइल का आकार | 305 KB |
स्थापना संख्या | 170 |
वर्तमान संस्करण | 2.3.0 |
अंतिम अपडेट | 2017-11-06 |
प्रकाशन तिथि | 2017-11-06 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | henry40408 |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/henry40408/awesome-stars |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "2.3.0", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__" }, "options_page": "pages\/options.html", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [ "images\/options-background.svg", "images\/options-logo.png", "images\/star-blue.svg", "images\/star-orange.svg", "images\/star-white.svg", "images\/star-yellow.svg" ], "permissions": [ "storage" ] } |