Awesome Stars
Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
ما هو Awesome Stars؟
Awesome Stars هو إضافة Chrome تم تطويرها بواسطة henry40408، والميزة الرئيسية لها هي "Awesome Stars is a chrome extension that shows you stars of repository on awesome list.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Awesome Stars
قم بتنزيل ملفات الامتداد Awesome Stars بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } |