Thread Portal

Browse Twitter spatially with a graph view

Thread Portal क्या है?

Thread Portal Dharam Kapila द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browse Twitter spatially with a graph view"।

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

screenshot
screenshot

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

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

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

                        This extension allows you to browse Twitter threads visually with a mind map, or a graph view.

In order to do this, click on the circle icon on the top right corner of any tweet in your timeline.
Alternatively, right click on any tweet and click on the Thread Portal icon.

This extension is inspired by the incredible Treeverse extension for Chrome. 
---

I hope you will like it. If you have any problems, don't hesitate to contact me :)                    

एक्सटेंशन की मूल जानकारी

नाम Thread Portal Thread Portal
ID pfjbbiekapboaocgioobnnibekglihin
आधिकारिक URL https://chrome.google.com/webstore/detail/thread-portal/pfjbbiekapboaocgioobnnibekglihin
विवरण Browse Twitter spatially with a graph view
फ़ाइल का आकार 234 KB
स्थापना संख्या 259
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-04-03
प्रकाशन तिथि 2021-04-03
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Dharam Kapila
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://roamresearch.com/#/app/Public-Dharam/page/msnUNCK3L
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Thread Portal",
    "description": "Browse Twitter spatially with a graph view",
    "version": "1.0.0",
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "app.js",
        "app.css"
    ],
    "browser_action": {
        "default_title": "Open Thread Portal"
    },
    "permissions": [
        "contextMenus",
        "webRequest",
        "https:\/\/twitter.com\/",
        "https:\/\/api.twitter.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}