Thread Portal
Browse Twitter spatially with a graph view
ما هو Thread Portal؟
Thread Portal هو إضافة Chrome تم تطويرها بواسطة Dharam Kapila، والميزة الرئيسية لها هي "Browse Twitter spatially with a graph view".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Thread Portal
قم بتنزيل ملفات الامتداد Thread Portal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 :)
معلومات أساسية عن التمديد
الاسم | |
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" ] } } |