Stash

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

Stash क्या है?

Stash stashextension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tiny browser extension that saves and syncs your favorite links across all your chromium browsers."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stash एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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."
        }
    }
}