Tabs2Text

Export all your opened tabs to a CSV, HTML, JSON or Markdown file.

什麼是Tabs2Text?

Tabs2Text是由dezese.dev開發的Chrome擴展程式,該擴展的主要功能是“Export all your opened tabs to a CSV, HTML, JSON or Markdown file.”。

擴展截圖

screenshot

下載Tabs2Text擴展crx文件

下載Tabs2Text擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Tabs2Text is an extension to export all your opened tabs, from a browser window or from all windows, to a CSV, HTML, JSON or Markdown file type. It includes the tabs' title and URL information.                    

擴展基本資訊

名稱 Tabs2Text Tabs2Text
ID cgajadebepocjjpimelagpannemlggoi
官方網址 https://chromewebstore.google.com/detail/tabs2text/cgajadebepocjjpimelagpannemlggoi
簡介 Export all your opened tabs to a CSV, HTML, JSON or Markdown file.
檔案大小 26.47 KB
安裝次數 102
目前版本 2020.6.11
更新時間 2020-06-14
上架時間 2020-06-14
開發者 dezese.dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.github.com/deniszanin/tabs2text
說明頁面URL https://www.github.com/deniszanin/tabs2text
支援的語言 en,en-GB,en-US,pt-BR,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/t2f-16.png",
            "32": "icons\/t2f-32.png",
            "48": "icons\/t2f-48.png",
            "96": "icons\/t2f-96.png"
        },
        "default_popup": "tabs2text-popup.html",
        "default_title": "Tabs2Text"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "commands": {
        "t2t-export": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+U",
                "mac": "Command+Shift+U",
                "windows": "Ctrl+Shift+U"
            },
            "description": "__MSG_commandDesc__",
            "global": true
        }
    },
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "homepage_url": "https:\/\/github.com\/deniszanin\/tabs2text",
    "icons": {
        "16": "icons\/t2f-16.png",
        "32": "icons\/t2f-32.png",
        "48": "icons\/t2f-48.png",
        "96": "icons\/t2f-96.png",
        "128": "icons\/t2f-128.png"
    },
    "incognito": "spanning",
    "manifest_version": 2,
    "minimum_chrome_version": "55",
    "name": "Tabs2Text",
    "options_ui": {
        "page": "tabs2text-settings.html"
    },
    "permissions": [
        "tabs",
        "downloads",
        "storage"
    ],
    "version": "2020.6.11"
}