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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tab Finder - by floverdevel 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}