TabAttack

Exports your tabs as easily archivable Markdown.

TabAttack là gì?

TabAttack là một tiện ích mở rộng Chrome được phát triển bởi https://jannesmeyer.com, và tính năng chính của nó là "Exports your tabs as easily archivable Markdown.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TabAttack

Tải xuống các tệp mở rộng TabAttack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TabAttack TabAttack
ID ginflokhdahakklidfjlogllkkhokidj
URL Chính Thức https://chromewebstore.google.com/detail/tabattack/ginflokhdahakklidfjlogllkkhokidj
Mô tả Exports your tabs as easily archivable Markdown.
Kích Thước Tệp 422 KB
Số Lần Cài Đặt 776
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2015-03-09
Ngày Phát Hành 2015-03-09
Đánh Giá 5.00/5 Tổng số 14 Đánh Giá
Nhà Phát Triển https://jannesmeyer.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JannesMeyer/TabAttack
URL Trang Trợ Giúp https://github.com/JannesMeyer/TabAttack/issues
Ngôn Ngữ Được Hỗ Trợ 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__"
        }
    }
}