DevTwitter

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

Τι είναι το DevTwitter;

Το DevTwitter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Forem, και η κύρια λειτουργία του είναι "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DevTwitter

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
            ]
        }
    ]
}