Stash

A tiny browser extension that saves and syncs your favorite links across all your chromium browsers.

什麼是Stash?

Stash是由stashextension開發的Chrome擴展程式,該擴展的主要功能是“A tiny browser extension that saves and syncs your favorite links across all your chromium browsers.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Stash擴展crx文件

下載Stash擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        With Stash, you can finally stop wasting time sending yourself links via email like a caveman. It's like having a personal assistant who remembers all your favorite websites, even if you're using a different browser or computer. And let's be honest, who doesn't want a personal assistant? Plus, using Stash will make you feel like a tech-savvy wizard who can effortlessly manage their favorite links like a boss. So go ahead and make your browsing experience more delightful than a box full of puppies. Kidding, a box of puppies wins every time.

Features:
- 🧘 Simple and tiny.
- ♻️ Syncs your data on multiple browsers and accounts.
- ⭐️ Works on your favorite chromium based browsers.
- 🦾 Uses Github to store your data.
- 🔒 Secure data encryption.
- 🌈 If your an Arc Browser user, this extension supports your space's theme colors.
- 🌴 Completely Free.                    

擴展基本資訊

名稱 Stash Stash
ID hkbmapdgnjblkefjfoanalgdmfcjmejo
官方網址 https://chromewebstore.google.com/detail/stash/hkbmapdgnjblkefjfoanalgdmfcjmejo
簡介 A tiny browser extension that saves and syncs your favorite links across all your chromium browsers.
檔案大小 355 KB
安裝次數 270
目前版本 0.0.8.2
更新時間 2024-01-31
上架時間 2023-02-22
評分 4.60/5 共 5 次評分
開發者 stashextension
電子郵箱 [email protected]
付費類型 free
擴展官網 https://rafaelgandi.com/stash
說明頁面URL https://rafaelgandi.com/stash
隱私政策頁面URL https://rafaelgandi.notion.site/Stash-Privacy-Policy-1bdf110818b14ffd926b6568b8eff9e6
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stash",
    "description": "A tiny browser extension that saves and syncs your favorite links across all your chromium browsers.",
    "version": "0.0.8.2",
    "manifest_version": 3,
    "minimum_chrome_version": "92",
    "icons": {
        "16": "assets\/icons\/16x16.png",
        "48": "assets\/icons\/48x48.png",
        "128": "assets\/icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css",
                "lib\/toastify.min.css"
            ],
            "js": [
                "lib\/toastify-js.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "lib\/helpers.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "stash-current-tab": {
            "suggested_key": {
                "default": "Alt+Shift+S",
                "mac": "Alt+Shift+S"
            },
            "description": "Add current tab to my stash."
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+O",
                "mac": "Alt+Shift+O"
            },
            "description": "Open stash window."
        }
    }
}