Twitter Logger
Automatically log tweets and save them as a table
Что такое Twitter Logger?
Twitter Logger - это расширение Chrome, разработанное Andre Bradshaw, и его основная функция - "Automatically log tweets and save them as a table".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Logger
Скачайте файлы расширений Twitter Logger в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically log Tweets in your feed for quick reference. Remember seeing a Tweet yesterday, but you only vaguely remember it? This tool allows you to search through the Tweets you viewed in the past with a simple keyword search. It also allows you to download the Tweets as a table. Основная информация о расширении
| Название | |
| ID | bhlemhgopbbimdicinegiiihdlngdjah |
| Официальный URL | https://chromewebstore.google.com/detail/twitter-logger/bhlemhgopbbimdicinegiiihdlngdjah |
| Описание | Automatically log tweets and save them as a table |
| Размер файла | 23.9 KB |
| Количество установок | 25 |
| Текущая Версия | 0.111 |
| Последнее Обновление | 2020-05-22 |
| Дата публикации | 2020-05-21 |
| Разработчик | Andre Bradshaw |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitter Logger",
"version": "0.111",
"description": "Automatically log tweets and save them as a table",
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"unlimitedStorage"
],
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
}
} | |