DevTwitter

Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.

什么是DevTwitter?

DevTwitter是由Forem开发的Chrome扩展程序,该扩展的主要功能是“Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.”。

扩展截图

screenshot
screenshot

下载DevTwitter扩展crx文件

下载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 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"
            ]
        }
    ]
}