Twitter Capture

Capture Tweet for users and export with pdf document.

什么是Twitter Capture?

Twitter Capture是由andresspistatio开发的Chrome扩展程序,该扩展的主要功能是“Capture Tweet for users and export with pdf document.”。

扩展截图

screenshot

下载Twitter Capture扩展crx文件

下载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"
    ]
}