Tab Searching
Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel.
What is Tab Searching?
Tab Searching is a Chrome extension developed by jiyinyiyong, and its main feature is "Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel.".
Extension Screenshots
Download Tab Searching Extension CRX File
Download Tab Searching extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel.
Extension Basic Information
Name | |
ID | mghfpkfegmeanpcabcmiipiknkegjnkd |
Official URL | https://chrome.google.com/webstore/detail/tab-searching/mghfpkfegmeanpcabcmiipiknkegjnkd |
Description | Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel. |
File Size | 111 KB |
Installation Count | 18 |
Current Version | 0.3.4 |
Last Updated | 2019-04-08 |
Publish Date | 2019-04-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | jiyinyiyong |
Payment Type | free |
Extension Website | https://github.com/Termina/tab-searching |
Help Page URL | https://github.com/Termima/tab-searching/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Searching", "version": "0.3.4", "manifest_version": 2, "icons": { "128": "tab-searching.png" }, "background": { "scripts": [ "bg.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval' http:\/\/localhost:8080; object-src 'self'", "permissions": [ "tabs", "history", "bookmarks", "chrome:\/\/favicon\/", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "js\/*", "css\/*", "coffee\/*" ], "browser_action": { "default_icon": "tab-searching.png" }, "commands": { "launch": { "suggested_key": { "default": "Ctrl+Period", "mac": "Command+Period" }, "description": "Launch my searching tool" } } } |