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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}