Thread Portal
Browse Twitter spatially with a graph view
什麼是Thread Portal?
Thread Portal是由Dharam Kapila開發的Chrome擴展程式,該擴展的主要功能是“Browse Twitter spatially with a graph view”。
擴展截圖
下載Thread Portal擴展crx文件
下載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 :)
擴展基本資訊
名稱 | |
ID | pfjbbiekapboaocgioobnnibekglihin |
官方網址 | 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" ] } } |