DevTwitter

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

Cos'è DevTwitter?

DevTwitter è un'estensione di Chrome sviluppata da Forem, e la sua funzione principale è "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione DevTwitter

Scarica i file di estensione DevTwitter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome DevTwitter DevTwitter
ID fhlipionhojfohecgljcljbpblojlaef
URL Ufficiale https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef
Descrizione Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
Dimensione del File 30.6 KB
Conteggio Installazioni 44
Versione Corrente 0.0.4
Ultimo Aggiornamento 2017-03-25
Data di Pubblicazione 2017-03-24
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Forem
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://dev.to
Lingue Supportate 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"
            ]
        }
    ]
}