Tab Finder - by floverdevel
Find and navigate to an opened tab
什么是Tab Finder - by floverdevel?
Tab Finder - by floverdevel是由floverdevel开发的Chrome扩展程序,该扩展的主要功能是“Find and navigate to an opened tab”。
扩展截图
下载Tab Finder - by floverdevel扩展crx文件
下载Tab Finder - by floverdevel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you have too many opened tabs in your browser? Do you have too many windows opened in your browser? Tab Finder - by floverdevel is your friend. It displays the list of currently opened tabs, even those in others windows, even those in Incognito Mode if you allow the extension to run in Incognito Mode (look for the «Allow in incognito» checkbox in your browser's extensions list «chrome://extensions/»). It filters the list by searching by tab's title and/or tab's URL. It navigates to the selected tab (select a tab by clicking on it or using the arrows keys then the Enter key), and brings its containing window to the foreground. It can create a new tab in current window (or in a new window using the shift key). If your search looks like a valid URL, the new tab will navigate to this URL, otherwise the new tab will trigger a Google search. Don't forget to rate and leave me a comment if you like and/or hate this extension. # Change Log All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## coming soon - display pinned tabs on top of list - new icon for dark mode ## 1.0.0 2020-11-15 - Initial public release on Github.com - add a default shortcut to activate the extension (Ctrl+Space) ## 0.5.3 2017-11-28 - fix "new tab" text was not readable ## 0.5.2 2017-11-28 - fix highlighted text was not aligned vertically ## 0.5.1 2017-11-27 - fix text overlapping when title or url are too long - fix search input placeholder text ## 0.5.0 2017-11-23 - close a tab _(pro tip : you can do it with middle-click too)_ - about version is displayed at the bottom of popup ## 0.4.0 2017-10-26 - ESC key closes the popup - minor bugfix and optimization ## 0.3.9.2 2016-02-17 - set the manifest's minimum_chrome_version to 27.0.1453.110 so the extension can be install on older browser via the google chrome webstore ## 0.3.9.1 2016-02-17 - fix a crash on older chrome version (tested on my chrome version 27.0.1453.110). Google Chrome webstore will not let you install but if install from source, this will help you :) ## 0.3.9 2016-02-15 - fix a crash when trying to render muted state on chrome version 45 or less ## 0.3.8 2016-01-25 - fix the behavior of the (new tab) when an empty string was supplied ## 0.3.7 2015-11-25 - fix rendering of google chrome internals urls's favicon (chrome://*) ## 0.3.6 2015-11-16 - adjust manifest file to enable packaging into chrome webstore ## 0.3.5 2015-11-16 - move README file into src folder to enable packaging into chrome webstore ## 0.3.4 2015-11-16 - added tooltip text ## 0.3.3 2015-11-02 - incognito, audible, muted and pinned icons are always display ## 0.3.2 2015-10-30 - add more icons for audible, muted, pinned ## 0.3.1 2015-10-30 - remove specials chars (thanks to @pascal_laporte) ## 0.3 2015-10-30 - icon to show if a tab is incognito - more icons for chrome urls ## 0.2 2015-10-06 - hold the shift key to open in new window instead of a new tab ## 0.1 ### initial version 2015-09-28 - do not search for text that looks like an uri, open them directly - trigger a google search when no tab are found - option to create a new tab - highlight text in element - favicon for special google chrome internals urls - display favicon and url
扩展基本信息
名称 | Tab Finder - by floverdevel |
ID | hfnickpljocfadhinpemeekdeebaenlo |
官方URL | https://chromewebstore.google.com/detail/tab-finder-by-floverdevel/hfnickpljocfadhinpemeekdeebaenlo |
简介 | Find and navigate to an opened tab |
文件大小 | 33.38 KB |
安装次数 | 1,022 |
当前版本 | 1.0.0 |
更新时间 | 2023-10-05 |
上架时间 | 2017-11-28 |
评分 | 4.63/5 共24次评分 |
开发者 | floverdevel |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/floverdevel/tab-finder-crx/issues/new/choose |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Finder - by floverdevel", "short_name": "tabfindercrx", "version": "1.0.0", "minimum_chrome_version": "27.0.1453.110", "manifest_version": 2, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Space", "mac": "MacCtrl+Space", "chromeos": "Ctrl+Space", "linux": "Ctrl+Space" } } }, "description": "Find and navigate to an opened tab", "icons": { "16": "resources\/icon_16.png", "32": "resources\/icon_32.png", "64": "resources\/icon_64.png", "128": "resources\/icon_128.png" }, "browser_action": { "default_icon": "resources\/icon_128.png", "default_title": "Find and navigate to an opened tab", "default_popup": "application.html" }, "permissions": [ "tabs" ] } |