Tab pinner

Pin or unpin tab.

Tab pinner क्या है?

Tab pinner bibixx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pin or unpin tab."।

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

screenshot

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

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

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

                        Simple extension for easily pinning and unpinning tabs using a button in a browser's toolbar.

## Features ##
  • Pin and unpin tabs using a toolbar button (or a keyboard shortcut)
  • Automatically pin tabs based on their url
  • Easily close the current tab by double clicking on a toolbar button (or by double pressing the keyboard shortcut)

## Issues ##
If you have any issues feel free to post them here
https://github.com/bibixx/tab-pinner/issues

Or write an email to
[email protected]

## Changelog ##
https://github.com/bibixx/tab-pinner/releases                    

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

नाम Tab pinner Tab pinner
ID mcclikmfcmcpejkaobpfkmmbekbhedoi
आधिकारिक URL https://chromewebstore.google.com/detail/tab-pinner/mcclikmfcmcpejkaobpfkmmbekbhedoi
विवरण Pin or unpin tab.
फ़ाइल का आकार 113 KB
स्थापना संख्या 1,573
वर्तमान संस्करण 3.0.3
अंतिम अपडेट 2023-03-21
प्रकाशन तिथि 2020-05-01
रेटिंग 4.71/5 कुल 7 रेटिंग्स
डेवलपर bibixx
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/bibixx/tab-pinner
समर्थित भाषाएँ en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab pinner",
    "description": "__MSG_description__",
    "version": "3.0.3",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "imgs\/icon_16.png",
            "48": "imgs\/icon_48.png",
            "128": "imgs\/icon_128.png",
            "256": "imgs\/icon_256.png"
        },
        "default_title": "__MSG_pin__"
    },
    "icons": {
        "16": "imgs\/icon_big_16.png",
        "48": "imgs\/icon_big_48.png",
        "128": "imgs\/icon_big_128.png",
        "256": "imgs\/icon_big_256.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X",
                "chromeos": "Ctrl+Shift+X",
                "linux": "Ctrl+Shift+X"
            }
        }
    },
    "manifest_version": 3
}