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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |