tweetflick

The smart way to save, organise, and access the tweets and threads you find useful.

Что такое tweetflick?

tweetflick - это расширение Chrome, разработанное tweetflickapp, и его основная функция - "The smart way to save, organise, and access the tweets and threads you find useful.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения tweetflick

Скачайте файлы расширений tweetflick в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The best way to save, organize, and access the tweets and threads you find most useful. Tweetflick is your personal bookmark manager designed for Twitter power users.

Build your LIBRARY OF TWEETS.

Save. Organize. Search your tweets like pro.

SAVE WITH ONE CLICK.

Just hit the icon in our Chrome extension that appears on each tweet in your Twitter timeline.

ORGANIZE IMMEDIATELY.

Instantly save to one of your collections and add tags to help find tweets later.

ADVANCED SEARCH

Use our search bar and advanced filters to extract and fetch your tweets like pro.

To use this extension you must first sign in at https://tweetflick.com                    

Основная информация о расширении

Название tweetflick tweetflick
ID mcneiehjehnljcginchohedbnncpejdl
Официальный URL https://chrome.google.com/webstore/detail/mcneiehjehnljcginchohedbnncpejdl
Описание The smart way to save, organise, and access the tweets and threads you find useful.
Размер файла 1.15 MB
Количество установок 266
Текущая Версия 2.4
Последнее Обновление 2023-02-05
Дата публикации 2020-12-26
Рейтинг 4.67/5 Всего 3 оценок
Разработчик tweetflickapp
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://tweetflick.com/
URL страницы политики конфиденциальности https://tweetflick.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "tweetflick",
    "description": "The smart way to save, organise, and access the tweets and threads you find useful.",
    "version": "2.4",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "tweetflick",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "tags.css"
            ]
        }
    ],
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/tweetflick.com\/*",
        "https:\/\/app.tweetflick.com\/*",
        "http:\/\/localhost:3000\/*",
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*",
        "https:\/\/tweetflick-front.axeldemos.com\/*",
        "https:\/\/tweetflick-landing.axeldemos.com\/*"
    ]
}