Thread Portal

Browse Twitter spatially with a graph view

Thread Portalคืออะไร?

Thread Portal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dharam Kapila และคุณลักษณะหลักของมันคือ "Browse Twitter spatially with a graph view"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Thread Portal

ดาวน์โหลดไฟล์ส่วนขยาย Thread Portal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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