DevTwitter
Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
What is DevTwitter?
DevTwitter is a Chrome extension developed by Forem, and its main feature is "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".
Extension Screenshots
Download DevTwitter Extension CRX File
Download DevTwitter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | DevTwitter |
ID | fhlipionhojfohecgljcljbpblojlaef |
Official URL | https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef |
Description | Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience. |
File Size | 30.6 KB |
Installation Count | 44 |
Current Version | 0.0.4 |
Last Updated | 2017-03-25 |
Publish Date | 2017-03-24 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Forem |
[email protected] | |
Payment Type | free |
Extension Website | https://dev.to |
Supported Languages | 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" ] } ] } |