Twitter Capture

Capture Tweet for users and export with pdf document.

Что такое Twitter Capture?

Twitter Capture - это расширение Chrome, разработанное andresspistatio, и его основная функция - "Capture Tweet for users and export with pdf document.".

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

screenshot

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

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

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

                        This tool is for capturing tweets.
It automatically captures your tweets so that you don't miss any useful tweets and you can download them in PDF format.                    

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

Название Twitter Capture Twitter Capture
ID jnkmebljcijjphggckiinogeenjmfiko
Официальный URL https://chrome.google.com/webstore/detail/jnkmebljcijjphggckiinogeenjmfiko
Описание Capture Tweet for users and export with pdf document.
Размер файла 732 KB
Количество установок 44
Текущая Версия 1.1
Последнее Обновление 2020-10-17
Дата публикации 2020-10-07
Рейтинг 5.00/5 Всего 4 оценок
Разработчик andresspistatio
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Capture",
    "description": "Capture Tweet for users and export with pdf document.",
    "version": "1.1",
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_title": "Twitter Capture.",
        "default_icon": {
            "16": "resources\/images\/icon.png",
            "32": "resources\/images\/icon.png",
            "48": "resources\/images\/icon.png",
            "128": "resources\/images\/icon.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "resources\/images\/icon.png",
        "32": "resources\/images\/icon.png",
        "48": "resources\/images\/icon.png",
        "128": "resources\/images\/icon.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "resources\/jquery\/jquery.js",
                "resources\/dom-to-image.min.js",
                "resources\/jsPDF\/jspdf.min.js",
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/search?q=from:*%20since:*%20until:*&src=typed_query&f=live"
            ]
        }
    ],
    "web_accessible_resources": [
        "resources\/injection.css"
    ]
}