Thread Portal
Browse Twitter spatially with a graph view
Thread Portal là gì?
Thread Portal là một tiện ích mở rộng Chrome được phát triển bởi Dharam Kapila, và tính năng chính của nó là "Browse Twitter spatially with a graph view".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Thread Portal
Tải xuống các tệp mở rộng Thread Portal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pfjbbiekapboaocgioobnnibekglihin |
URL Chính Thức | https://chrome.google.com/webstore/detail/thread-portal/pfjbbiekapboaocgioobnnibekglihin |
Mô tả | Browse Twitter spatially with a graph view |
Kích Thước Tệp | 234 KB |
Số Lần Cài Đặt | 259 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-04-03 |
Ngày Phát Hành | 2021-04-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Dharam Kapila |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://roamresearch.com/#/app/Public-Dharam/page/msnUNCK3L |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |