DevTwitter

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

Vad är DevTwitter?

DevTwitter är en Chrome-tillägg utvecklad av Forem, och dess huvudfunktion är "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner DevTwitter-förlängningens CRX-fil

Ladda ner DevTwitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn DevTwitter DevTwitter
ID fhlipionhojfohecgljcljbpblojlaef
Officiell webbadress https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef
Beskrivning Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
Filstorlek 30.6 KB
Antal Installationer 44
Aktuell Version 0.0.4
Senast Uppdaterad 2017-03-25
Publiceringsdatum 2017-03-24
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Forem
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://dev.to
Stödda Språk 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"
            ]
        }
    ]
}