Fuzzy Tab
Fuzzy Tab allows you quickly navigate through tabs using fuzzy match.
Wat is Fuzzy Tab?
Fuzzy Tab is een Chrome-extensie ontwikkeld door galulex, en de belangrijkste functie is "Fuzzy Tab allows you quickly navigate through tabs using fuzzy match.".
Extensie Screenshots
Download het CRX-bestand van de extensie Fuzzy Tab
Download Fuzzy Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Fuzzy Tab brings functionality similar to FuzzyFinder, CommandT or CTRLP to chrome. Fuzzy Tab allows you quickly navigate through tabs using fuzzy match, quickly close tabs. Also it displays opened tabs count. There several shortcuts available: Alt+O: Launch Fuzzy Tab Alx+C: Close Focused Tab Shortcuts can be changed in chrome://extensions/
Basisinformatie over de Extensie
Naam | Fuzzy Tab |
ID | kjgcoheodpddpdjkcajpejbncomdcain |
Officiële URL | https://chromewebstore.google.com/detail/fuzzy-tab/kjgcoheodpddpdjkcajpejbncomdcain |
Beschrijving | Fuzzy Tab allows you quickly navigate through tabs using fuzzy match. |
Bestandsgrootte | 9.17 KB |
Aantal Installaties | 66 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-09-29 |
Publicatiedatum | 2015-09-29 |
Beoordeling | 4.75/5 Totaal 12 Beoordelingen |
Ontwikkelaar | galulex |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fuzzy Tab", "description": "Fuzzy Tab allows you quickly navigate through tabs using fuzzy match.", "version": "1.0", "background": { "scripts": [ "fuse.min.js", "background.js" ] }, "icons": { "16": "32px.png", "128": "128px.png" }, "omnibox": { "keyword": "f" }, "browser_action": { "default_title": "Fuzzy Tab", "default_popup": "popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "chromeos": "Alt+O", "linux": "Alt+O", "mac": "Alt+O", "windows": "Alt+O" } }, "close-tab": { "suggested_key": { "chromeos": "Alt+C", "linux": "Alt+C", "mac": "Alt+C", "windows": "Alt+C" }, "description": "Close Focused Tab" } }, "permissions": [ "tabs" ], "manifest_version": 2 } |