hn-friends
Highlight and tag your friends on Hacker News.
ما هو hn-friends؟
hn-friends هو إضافة Chrome تم تطويرها بواسطة jessejesse123، والميزة الرئيسية لها هي "Highlight and tag your friends on Hacker News.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة hn-friends
قم بتنزيل ملفات الامتداد hn-friends بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Highlight and tag your friends on Hacker News. معلومات أساسية عن التمديد
| الاسم | |
| ID | ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
| الوصف | Highlight and tag your friends on Hacker News. |
| حجم الملف | 15.83 KB |
| عدد التثبيتات | 27 |
| النسخة الحالية | 1.2 |
| آخر تحديث | 2018-08-10 |
| تاريخ النشر | 2018-08-10 |
| تقييم | 5.00/5 مجموع تقييمات 2 |
| المطور | jessejesse123 |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "hn-friends",
"version": "1.2",
"description": "Highlight and tag your friends on Hacker News.",
"icons": {
"48": "icons\/48.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"img\/tag.svg"
],
"content_scripts": [
{
"matches": [
"https:\/\/news.ycombinator.com\/*"
],
"js": [
"src\/utils.js",
"src\/hn-friends.js"
]
},
{
"matches": [
"https:\/\/news.ycombinator.com\/user?id=*"
],
"js": [
"src\/user.js"
]
}
],
"browser_action": {
"browser_style": false,
"default_icon": {
"48": "icons\/48.png",
"96": "icons\/96.png"
},
"default_title": "HN Friends",
"default_popup": "popup\/popup.html"
}
} | |