Stash

Smart tab groups and bookmarks that keep your browsing organized.

Stash là gì?

Stash là một tiện ích mở rộng Chrome được phát triển bởi https://stash.technology, và tính năng chính của nó là "Smart tab groups and bookmarks that keep your browsing organized.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Stash is a tab, bookmark, and session management extension that makes it easier than ever to stay organized, focused and productive. The extension enhances and integrates your browsers tab group and bookmark features to better support extensive browsing and research. 

📑 SMART TAB GROUPS
* Automatic grouping of related tabs 
* Group multiple tabs with keyboard shortcut or cmd/ctrl + click
* Automatic collapsing of inactive tab groups
* Automatic removal of active group’s title to save space on tab bar
* Automatic navigation to last active tab when group is expanded

📂 SMART BOOKMARKS
* Automatic creation of bookmark folder for each tab group
* Save tabs and links to the active group’s folder with a single click 
* Save links as temporary bookmarks that get removed once opened 
* Create group specific bookmark bar that is shown the group is in use and hidden inactive
* View and retrieve a group’s bookmarks from a tab within the group
* Save or move tab to inactive group from the search bar 

🕓 BETTER BROWSING HISTORY
* Tab groups are persistent and can be restored if your browser closes or updates
* View a history of your tab groups and jump back into past browsing sessions 
* Organize your history by favorites and categories

DATA PRIVACY
🔒Stash was designed to ensure that your personal data remains private, secure and easily accessible. 
🙈No signup required. All of your data is stored locally in your browser and none of your tab or bookmark data is sent to or stored on a remote server.                    

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

Tên Stash Stash
ID gmiopfodlkpkngbhlogibegjoenhebli
URL Chính Thức https://chromewebstore.google.com/detail/stash/gmiopfodlkpkngbhlogibegjoenhebli
Mô tả Smart tab groups and bookmarks that keep your browsing organized.
Kích Thước Tệp 48.7 KB
Số Lần Cài Đặt 557
Phiên Bản Hiện Tại 0.0.3.2
Cập Nhật Lần Cuối 2023-07-03
Ngày Phát Hành 2023-01-22
Đánh Giá 4.70/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://stash.technology
Email [email protected]
Loại Thanh Toán in_app
URL Trang Chính Sách Bảo Mật http://stash.technology/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stash",
    "version": "0.0.3.2",
    "description": "Smart tab groups and bookmarks that keep your browsing organized.",
    "background": {
        "service_worker": "background\/index.js",
        "type": "module"
    },
    "omnibox": {
        "keyword": "."
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/stash.technology\/*"
        ]
    },
    "action": {
        "default_title": "Stash",
        "default_icon": {
            "32": "logo.png"
        }
    },
    "icons": {
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "alarms",
        "tabs",
        "contextMenus",
        "bookmarks",
        "tabGroups",
        "storage",
        "unlimitedStorage"
    ],
    "incognito": "spanning",
    "commands": {
        "01newTab": {
            "description": "NEW TAB - opens a new tab within the active group (replaces cmd\/ctrl + T) "
        },
        "02groupTabs": {
            "description": "GROUP TABS - creates a group from highlighted tabs (highlight a tab by holding cmd\/ctrl and clicking the tab's label)",
            "suggested_key": {
                "default": "Alt+G"
            }
        },
        "03undoGroup": {
            "description": "UNDO GROUP - ungroups all tabs in active group"
        },
        "04closeGroup": {
            "description": "CLOSE GROUP - closes the active group"
        },
        "05shutdown": {
            "description": "CLOSE ALL GROUPS - closes all open groups"
        },
        "06openTabs": {
            "description": "OPEN TAB IN WINDOW - open active tab in pop-up window"
        },
        "07saveTab": {
            "description": "SAVE TAB - save tab to active group's bookmark folder"
        },
        "08stashTab": {
            "description": "STASH TAB - closes active tab and saves it to the active group's bookmark folder",
            "suggested_key": {
                "default": "Alt+S"
            }
        },
        "09stashAll": {
            "description": "STASH ALL TABS - stashes all tabs within active group",
            "suggested_key": {
                "default": "Alt+A"
            }
        },
        "10pinTab": {
            "description": "PIN TAB - save tab to active group's bookmark bar",
            "suggested_key": {
                "default": "Alt+P"
            }
        },
        "11getNext": {
            "description": "GET NEXT - opens the oldest stashed web page in active group's bookmark folder"
        }
    },
    "manifest_version": 3
}