YourTab

Keeping Tabs on them Tabs

YourTab là gì?

YourTab là một tiện ích mở rộng Chrome được phát triển bởi zweicoder, và tính năng chính của nó là "Keeping Tabs on them Tabs".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng YourTab 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

                        Too many Tabs? Put them on YourTab! 

YourTab allows you to save all OR select Tabs in a click! Save RAM and save yourself from headaches from having too many tabs.

Feedback and Suggestions are welcome! Interested to help? Fork it on Github at https://github.com/zweicoder/YourTab !                    

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

Tên YourTab YourTab
ID oiagjhkaiodbkdhiecedjllclkpamkfa
URL Chính Thức https://chrome.google.com/webstore/detail/yourtab/oiagjhkaiodbkdhiecedjllclkpamkfa
Mô tả Keeping Tabs on them Tabs
Kích Thước Tệp 115 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.9.0
Cập Nhật Lần Cuối 2015-08-13
Ngày Phát Hành 2015-08-13
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển zweicoder
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YourTab",
    "version": "0.9.0",
    "description": "Keeping Tabs on them Tabs",
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "YourTab",
        "default_icon": "icons\/icon48.png"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "commands": {
        "save-current": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Save current tab."
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/modal\/modal.js",
                "assets\/jquery.min.js",
                "assets\/mithril.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "src\/options\/options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ]
}