Twitter Bird
Extension which returns the Twitter bird icon back
ما هو Twitter Bird؟
Twitter Bird هو إضافة Chrome تم تطويرها بواسطة https://cking.software، والميزة الرئيسية لها هي "Extension which returns the Twitter bird icon back".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitter Bird
قم بتنزيل ملفات الامتداد Twitter Bird بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project. معلومات أساسية عن التمديد
| الاسم | |
| ID | ihahjhhimifemcpmbghgjmniofjchmlh |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh |
| الوصف | Extension which returns the Twitter bird icon back |
| حجم الملف | 553 KB |
| عدد التثبيتات | 196 |
| النسخة الحالية | 1.1 |
| آخر تحديث | 2023-08-29 |
| تاريخ النشر | 2023-07-26 |
| تقييم | 4.00/5 مجموع تقييمات 3 |
| المطور | https://cking.software |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/Semper-Viventem/twitter-bird |
| عنوان صفحة المساعدة | https://github.com/Semper-Viventem/twitter-bird/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitter Bird",
"description": "Extension which returns the Twitter bird icon back",
"version": "1.1",
"action": {
"default_icon": "images\/icon_512.png"
},
"content_scripts": [
{
"js": [
"scripts\/content.js"
],
"css": [
"content.css"
],
"matches": [
"https:\/\/twitter.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/*"
],
"matches": [
"https:\/\/twitter.com\/*"
]
}
],
"icons": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png",
"512": "images\/icon_128.png"
}
} | |