DevTwitter
Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
DevTwitter là gì?
DevTwitter là một tiện ích mở rộng Chrome được phát triển bởi Forem, và tính năng chính của nó là "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DevTwitter
Tải xuống các tệp mở rộng DevTwitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DevTwitter |
ID | fhlipionhojfohecgljcljbpblojlaef |
URL Chính Thức | https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef |
Mô tả | Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience. |
Kích Thước Tệp | 30.6 KB |
Số Lần Cài Đặt | 44 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2017-03-25 |
Ngày Phát Hành | 2017-03-24 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Forem |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://dev.to |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |