UnTab

Search through tabs, history, bookmarks and perform common browser actions like a hero!

UnTab क्या है?

UnTab Akash Hamirwasia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Search through tabs, history, bookmarks and perform common browser actions like a hero!"।

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

screenshot
screenshot
screenshot

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

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

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

                        Most of us have dozens of open tabs, and it quickly becomes cumbersome to manage them efficiently. UnTab is a free and open-source browser extension that gives you superpowers by making it possible to search through open tabs, history, bookmarks and perform common actions with just a few keystrokes.

With UnTab you can:
- 🔍 Search and Switch open tabs, history, bookmarks.
- 🚀 Open Google, DuckDuckGo, Bing search results.
- 💡 Pin/Unpin and close open tabs.
- 🌐 Open a link by typing it's URL.
- 🎨 Choose beautiful themes for UnTab based to your mood.

UnTab search interface can be opened by pressing Ctrl + Shift + Space or Command + Shift + Space (Mac).                    

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

नाम UnTab UnTab
ID cijggohdciglnifgpobicololkdjihad
आधिकारिक URL https://chromewebstore.google.com/detail/untab/cijggohdciglnifgpobicololkdjihad
विवरण Search through tabs, history, bookmarks and perform common browser actions like a hero!
फ़ाइल का आकार 105 KB
स्थापना संख्या 310
वर्तमान संस्करण 0.4.0
अंतिम अपडेट 2022-01-18
प्रकाशन तिथि 2021-02-08
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Akash Hamirwasia
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://getuntab.now.sh
सहायता पृष्ठ URL https://github.com/blenderskool/untab/issues
गोपनीयता नीति पृष्ठ URL https://pigmnts.web.app/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UnTab",
    "version": "0.4.0",
    "author": "Akash Hamirwasia",
    "description": "Search through tabs, history, bookmarks and perform common browser actions like a hero!",
    "homepage_url": "https:\/\/getuntab.now.sh",
    "icons": {
        "48": "static\/icons\/icon_48.png",
        "96": "static\/icons\/icon_96.png",
        "128": "static\/icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "content\/content.js"
            ],
            "css": [
                "content\/styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "index.html"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "toggle-search": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Send a 'toggle-search' event to the extension"
        }
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/",
        "storage"
    ],
    "optional_permissions": [
        "bookmarks",
        "history",
        "https:\/\/api.duckduckgo.com\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src http: https: data: chrome:\/\/favicon;"
}