Save and search bookmarks with Stacks

Stacks is your personal search engine. Recall bookmarks automatically.

Save and search bookmarks with Stacks क्या है?

Save and search bookmarks with Stacks https://betterstacks.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stacks is your personal search engine. Recall bookmarks automatically."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        You bookmark something to avoid forgetting it, but then you forget where you saved it! 

99000 search queries are processed by Google every second.
But what about the pages we all bookmark daily? We rarely revisit them.
Why? They hide in the bookmark manager, out of sight.

But we're here to change that.

Stacks lets you bookmark from your favorite browser, and our automated AI categorization neatly organizes it all, ready to find it when you search for it. 

The next time you search for something like 'recipe for pasta,' we'll dig up what you've bookmarked. So you can revisit it, recreate it, and savor the flavors once more.

But here's the real treat: 
You can import all your saved posts from platforms like LinkedIn, YouTube, Twitter, you name it. It's like creating your personal library of everything you love. Once you've got that library, our nifty AI technology helps you stack and find exactly what you need. 

We're turning your bookmarks into a knowledge hub.

Together, you'll create a massive, meaningful library that's easily accessible to everyone you choose to share it with. You can share your curated library of bookmarked content with colleagues, friends, or classmates.
Easy, isn't it?

🚀 Get Stacks. Get Stacked. Get Started.

With Stacks, you can:

🏞 Save any content with one click: bookmarks, videos, music, photos, documents, notes, articles, books, places, links, GIFs, tweets, instagram posts, youtube videos and more.
🔎 Shows smart recommendations on Google and all major search engines.
⚡️ Access your saved content from any device and browser with a simple search (Control / Command + K or Right Click >> Search Stacked Links).
🪄 Organize your content automatically into smart collections and/or build collections that are personal and more customized.
🤝 Share your content with your team members or anyone else. Collaborate on projects, ideas, feedback, and knowledge.
🔗 Build a personal library of your favorite content that reflects your values and mission.

Follow us on
Twitter - https://twitter.com/betterstacks
Instagram - https://instagram.com/betterstacks
LinkedIn https://linkedin.com/company/betterstacks/                    

एक्सटेंशन की मूल जानकारी

नाम Save and search bookmarks with Stacks Save and search bookmarks with Stacks
ID nfjbjlpkfimhobegkcoekpkdlokjkcfj
आधिकारिक URL https://chromewebstore.google.com/detail/save-and-search-bookmarks/nfjbjlpkfimhobegkcoekpkdlokjkcfj
विवरण Stacks is your personal search engine. Recall bookmarks automatically.
फ़ाइल का आकार 2.03 MB
स्थापना संख्या 1,367
वर्तमान संस्करण 2.5.2
अंतिम अपडेट 2024-02-05
प्रकाशन तिथि 2022-01-20
रेटिंग 4.20/5 कुल 10 रेटिंग्स
डेवलपर https://betterstacks.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://betterstacks.com
सहायता पृष्ठ URL https://airtable.com/shrNknmfzfl56Aqpe
गोपनीयता नीति पृष्ठ URL https://betterstacks.com/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save and search bookmarks with Stacks",
    "description": "Stacks is your personal search engine. Recall bookmarks automatically. ",
    "version": "2.5.2",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Stacks - save, search and share bookmarks instantly",
        "default_icon": "logo.png"
    },
    "permissions": [
        "favicon",
        "activeTab",
        "tabs",
        "bookmarks",
        "storage",
        "contextMenus",
        "scripting",
        "webRequest"
    ],
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "StackSearchCommand": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Shift+Command+K"
            },
            "description": "Search with Stacks"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/betterstacks.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "contentScriptPage.js",
                "annotationCommentsScript.js",
                "annotationCommentsPage.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "githubScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "twitterScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "instagramScript.js"
            ]
        },
        {
            "js": [
                "contentScriptForTwitter.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "contentScriptForLinkedIn.js"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "linkedInSciptPage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "facebookSciptPage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "contentScriptForInstagram.js"
            ]
        },
        {
            "js": [
                "contentScriptForYoutube.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/www.linkedin.com\/*",
        "https:\/\/github.com\/*",
        "https:\/\/www.instagram.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'"
    }
}