DevTwitter

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

Apa itu DevTwitter?

DevTwitter adalah ekstensi Chrome yang dikembangkan oleh Forem, dan fitur utamanya adalah "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi DevTwitter

Unduh file ekstensi DevTwitter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama DevTwitter DevTwitter
ID fhlipionhojfohecgljcljbpblojlaef
URL Resmi https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef
Deskripsi Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
Ukuran File 30.6 KB
Jumlah Instalasi 44
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2017-03-25
Tanggal Publikasi 2017-03-24
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Forem
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://dev.to
Bahasa yang Didukung 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"
            ]
        }
    ]
}