StoryChief - Twitter Thread Designer
Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.
Что такое StoryChief - Twitter Thread Designer?
StoryChief - Twitter Thread Designer - это расширение Chrome, разработанное https://storychief.io, и его основная функция - "Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.".
Снимки экрана расширения
Скачать файл CRX расширения StoryChief - Twitter Thread Designer
Скачайте файлы расширений StoryChief - Twitter Thread Designer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds a new button to Twitter threads. This button opens a thread slideshow designer where you can export to pdf and images.
How to get started:
1. Install this extension
2. Proceed to a Twitter thread
3. Click Thread designer
4. Start designing your slideshow 🎉 Основная информация о расширении
| Название | |
| ID | ngndiifcikgmoddfknfcbpjbemffdpdo |
| Официальный URL | https://chromewebstore.google.com/detail/storychief-twitter-thread/ngndiifcikgmoddfknfcbpjbemffdpdo |
| Описание | Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts. |
| Размер файла | 74.02 KB |
| Количество установок | 387 |
| Текущая Версия | 0.5 |
| Последнее Обновление | 2022-12-18 |
| Дата публикации | 2022-03-25 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | https://storychief.io |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://storychief.io |
| URL страницы помощи | https://help.storychief.io |
| URL страницы политики конфиденциальности | https://storychief.io/privacy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.",
"version": "0.5",
"manifest_version": 3,
"permissions": [],
"name": "StoryChief - Twitter Thread Designer",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/*.twitter.com\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"devtools_page": "devtools.html",
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-128.png",
"icon-34.png",
"visual.jpg"
],
"matches": []
}
]
} | |