Recent-tabs

Very fast switching tabs

Recent-tabs क्या है?

Recent-tabs sergcen17 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Very fast switching tabs"।

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

screenshot

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

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

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

                        # Recent-tabs
Fast switch between tabs
source code: https://github.com/sergcen/recent-tabs

features:
* Search by opened tabs
* Search by bookmarks
* Search by history
* show all opened tabs in popup, sorted by last usage
* 2-step search in browser history (if matched tabs count < 5)

Browsers: Chrome, YandexBrowser

## Hotkeys
CMD + E - open tabs popup (default for MAC, for Windows users set it manually)
SHIFT + arrowRight - close selected tab
SHIFT + arrowDown - closes everything tabs to the bottom, including selected
CMD + C - copy URL of selected tab (CTRL + C for windows users)                    

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

नाम Recent-tabs Recent-tabs
ID aamlejepmlabpimifejjnmkjcolooifi
आधिकारिक URL https://chromewebstore.google.com/detail/recent-tabs/aamlejepmlabpimifejjnmkjcolooifi
विवरण Very fast switching tabs
फ़ाइल का आकार 116 KB
स्थापना संख्या 99
वर्तमान संस्करण 1.5
अंतिम अपडेट 2020-05-06
प्रकाशन तिथि 2020-05-05
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर sergcen17
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.5",
    "manifest_version": 2,
    "short_name": "__MSG_appShortName__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "options_ui": {
        "page": "pages\/settings.html",
        "open_in_tab": false
    },
    "commands": {
        "_execute_browser_action": [],
        "move-tabs-new-window": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Move tabs to new window"
        }
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "history",
        "tabs",
        "storage",
        "bookmarks"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}