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
Eメール [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"
            ]
        }
    ]
}