TabAttack

Exports your tabs as easily archivable Markdown.

TabAttack란 무엇입니까?

TabAttack은(는) https://jannesmeyer.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exports your tabs as easily archivable Markdown."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TabAttack 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Save browser memory by exporting your tabs as Markdown. The extension allows you to edit the document in a text editor as you wish before you save it.

Later, you can import these Markdown documents and restore all windows exactly like they were before.

As an added benefit this extension also adds a few useful tab management keyboard shortcuts.



Source code (licensed under GPLv3): https://github.com/JannesMeyer/TabAttack                    

확장 프로그램 기본 정보

이름 TabAttack TabAttack
ID ginflokhdahakklidfjlogllkkhokidj
공식 URL https://chromewebstore.google.com/detail/tabattack/ginflokhdahakklidfjlogllkkhokidj
설명 Exports your tabs as easily archivable Markdown.
파일 크기 422 KB
설치 횟수 776
현재 버전 1.6
최근 업데이트 2015-03-09
출시 날짜 2015-03-09
평점 5.00/5 총 14 개의 평점
개발자 https://jannesmeyer.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JannesMeyer/TabAttack
도움말 페이지 URL https://github.com/JannesMeyer/TabAttack/issues
지원되는 언어 de,en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "homepage_url": "https:\/\/github.com\/JannesMeyer\/TabAttack",
    "version": "1.6",
    "minimum_chrome_version": "40",
    "default_locale": "en",
    "description": "__MSG_ext_description__",
    "icons": {
        "16": "data\/icon-h16.png",
        "48": "data\/icon-h48.png",
        "128": "data\/icon-h128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "clipboardWrite",
        "chrome:\/\/favicon\/",
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "build\/background.bundle.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "offline_enabled": true,
    "browser_action": {
        "default_icon": {
            "19": "data\/browser-action.png"
        },
        "default_title": "__MSG_icon_tooltip__"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        },
        "copy_tab_as_markdown": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "__MSG_shortcut_copy_tab_as_markdown__"
        },
        "move_tab_left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma"
            },
            "description": "__MSG_shortcut_move_tab_left__"
        },
        "move_tab_right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period"
            },
            "description": "__MSG_shortcut_move_tab_right__"
        },
        "duplicate_tab": {
            "description": "__MSG_shortcut_duplicate_tab__"
        },
        "pin_tab": {
            "description": "__MSG_shortcut_pin_tab__"
        },
        "send_tab": {
            "description": "__MSG_shortcut_send_tab__"
        }
    }
}