DevTwitter

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

DevTwitter क्या है?

DevTwitter Forem द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DevTwitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}