Threadia
You can read the threads as blog posts and share the blog pages as threads in a click.
Co to jest Threadia?
Threadia to rozszerzenie Chrome opracowane przez hallackerem, a jego główną funkcją jest „You can read the threads as blog posts and share the blog pages as threads in a click.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Threadia
Pobierz pliki rozszerzeń Threadia w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
You can read the threads as blog posts and share the blog pages as threads in a click. Threadia helps you by turning Twitter threads into a readable page. It also helps you share blog posts as a thread. The main features of the application are; * You can get a summary of the blog post you will share. * You can generate hashtags from your blog post to increase the interaction of the thread. Threadia protects you from getting lost between hard-to-read threads, increases your social visibility by sharing blogs as threads with hashtags.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fmecnpcdaiediolnohoiebdkphdlihio |
Oficjalny URL | https://chrome.google.com/webstore/detail/threadia/fmecnpcdaiediolnohoiebdkphdlihio |
Opis | You can read the threads as blog posts and share the blog pages as threads in a click. |
Rozmiar pliku | 14.4 KB |
Liczba instalacji | 101 |
Aktualna Wersja | 0.0.0.3 |
Ostatnia Aktualizacja | 2020-07-26 |
Data Publikacji | 2020-07-03 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | hallackerem |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://threadia.com/ |
Adres URL Strony Pomocy | https://threadia.com/ |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Threadia", "short_name": "Threadia", "version": "0.0.0.3", "version_name": "0.0.0.3", "description": "You can read the threads as blog posts and share the blog pages as threads in a click.", "browser_action": { "default_icon": "icons\/threadia-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/threadia.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "icons": { "16": "icons\/threadia-16.png", "48": "icons\/threadia-48.png", "128": "icons\/threadia-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "homepage_url": "https:\/\/threadia.com\/", "permissions": [ "storage", "contextMenus", "tabs", "https:\/\/threadia.com\/*", "https:\/\/twitter.com\/*", "https:\/\/medium.com\/*" ] } |