Tab pinner

Pin or unpin tab.

Qu'est-ce que Tab pinner ?

Tab pinner est une extension Chrome développée par bibixx, et sa fonction principale est "Pin or unpin tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tab pinner

Téléchargez les fichiers d'extension Tab pinner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Tab pinner Tab pinner
ID mcclikmfcmcpejkaobpfkmmbekbhedoi
URL Officiel https://chromewebstore.google.com/detail/tab-pinner/mcclikmfcmcpejkaobpfkmmbekbhedoi
Description Pin or unpin tab.
Taille du Fichier 113 KB
Nombre d'Installations 1,573
Version Actuelle 3.0.3
Dernière Mise à Jour 2023-03-21
Date de Publication 2020-05-01
Évaluation 4.71/5 Total 7 Évaluations
Développeur bibixx
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/bibixx/tab-pinner
Langues Prises en Charge 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
}