GitHub Favorites
Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
ما هو GitHub Favorites؟
GitHub Favorites هو إضافة Chrome تم تطويرها بواسطة hswolff، والميزة الرئيسية لها هي "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Favorites
قم بتنزيل ملفات الامتداد GitHub Favorites بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This little extension for Google Chrome adds a Favorite button on GitHub repository pages right next to the Watch button. When you hit the Favorite button it adds that repo to the folder 'GitHub Favorites' in your Bookmarks. If you want to remove the bookmark just hit the Favorite button again! Full info available on the GitHub repository! https://github.com/hswolff/github-favorites
معلومات أساسية عن التمديد
الاسم | |
ID | kfhdalekdpifhlndhcdnjgjoefiajefc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc |
الوصف | Allows you to favorite GitHub repos to save for later instead of adding them to your watch list. |
حجم الملف | 593 KB |
عدد التثبيتات | 201 |
النسخة الحالية | 1.4 |
آخر تحديث | 2014-02-22 |
تاريخ النشر | 2014-02-22 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | hswolff |
نوع الدفع | free |
موقع الإضافة | https://github.com/hswolff/github-favorites |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Favorites", "version": "1.4", "description": "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2, "web_accessible_resources": [ "script.js" ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "bookmarks", "https:\/\/github.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*.com\/blog*", "*.com\/explore*", "*.com\/settings*", "*.com\/inbox*", "*.com\/repositories*", "*.com\/popular*" ], "js": [ "script.js" ] } ] } |