Pinned Tabs

Keep Pinned Tabs When Open New Window

Pinned Tabs là gì?

Pinned Tabs là một tiện ích mở rộng Chrome được phát triển bởi wnaklulu, và tính năng chính của nó là "Keep Pinned Tabs When Open New Window".

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

screenshot

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

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

                        The closed window is pinned the next time the label is reopened, and the new window automatically synchronizes pinned labels 
1. Need to fix the tag right pinned tag
2. Open the extension input name to save the pinned label
3. Select enable next time will automatically open enabled tag group
4. [github](https://github.com/0851/pinned)
5. [demo](https://raw.githubusercontent.com/0851/pinned/master/images/use.mp4)                    

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

Tên Pinned Tabs Pinned Tabs
ID biccgodmohjplafdhicdhkdeeejcmgia
URL Chính Thức https://chromewebstore.google.com/detail/pinned-tabs/biccgodmohjplafdhicdhkdeeejcmgia
Mô tả Keep Pinned Tabs When Open New Window
Kích Thước Tệp 41.32 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-01-21
Ngày Phát Hành 2019-01-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển wnaklulu
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/0851/pinned
URL Trang Trợ Giúp https://github.com/0851/pinned/issues
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_name_sort__",
    "version": "1.0.0",
    "description": "__MSG_ext_description__",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon32.png",
        "48": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon32.png",
            "48": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_ext_name__"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": false
    }
}