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
官方網址 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"
            ]
        }
    ]
}