DevTwitter
Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
ما هو DevTwitter؟
DevTwitter هو إضافة Chrome تم تطويرها بواسطة Forem، والميزة الرئيسية لها هي "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة DevTwitter
قم بتنزيل ملفات الامتداد DevTwitter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Headlines from https://dev.to are placed right below trends, so you can keep up to date with the latest dev content while you browse Twitter. This project is open source. Read or contribute to the code source by visiting https://github.com/thepracticaldev/DevTwitter This is the most basic version of the extension. I think there is a lot more we can do with it, so please feel free to contribute on GitHub.
معلومات أساسية عن التمديد
الاسم | DevTwitter |
ID | fhlipionhojfohecgljcljbpblojlaef |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef |
الوصف | Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience. |
حجم الملف | 30.6 KB |
عدد التثبيتات | 44 |
النسخة الحالية | 0.0.4 |
آخر تحديث | 2017-03-25 |
تاريخ النشر | 2017-03-24 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Forem |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://dev.to |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DevTwitter", "version": "0.0.4", "manifest_version": 2, "description": "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.", "homepage_url": "https:\/\/github.com\/thepracticaldev\/DevTwitter", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/dev.to\/api\/articles" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/", "https:\/\/twitter.com\/*" ], "js": [ "src\/inject.js" ] } ] } |