Tabs Search & Navigator

Tabs Search & Navigator

Tabs Search & Navigatorคืออะไร?

Tabs Search & Navigator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pkrs และคุณลักษณะหลักของมันคือ "Tabs Search & Navigator"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tabs Search & Navigator

ดาวน์โหลดไฟล์ส่วนขยาย Tabs Search & Navigator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tabs Search & Navigator is an all in one extension which enables users to vertically navigate through chrome tabs. It also allows users to search open tabs by URL, Title and keywords present on the pages. Users can also arrange tabs in order based on URL and title preferences.
 
-Allows users to view all open tabs in a vertical list.
-You can search all the open tabs by URL, Title or any keywords present on the pages.
-Interchange the tabs in list by drag and drop.
-Shortcut keys to navigate through the extension with ease.
-Arrange alphabetical order by URL and Title lets you arrange your tabs making it further easier to differentiate and navigate among tabs.
-Hovering over a title on the list for 3 seconds gets you a direct URL link to select and copy. 

Once you install the extension for the first time, refresh all the open tabs in order for the search feature to work.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tabs Search & Navigator Tabs Search & Navigator
ID dgmeommagphlmhpefbcmjkoogacanebl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tabs-search-navigator/dgmeommagphlmhpefbcmjkoogacanebl
คำอธิบาย Tabs Search & Navigator
ขนาดไฟล์ 242 KB
จำนวนการติดตั้ง 175
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2018-04-09
วันที่เผยแพร่ 2018-04-08
คะแนน 4.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา pkrs
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Tabs Search & Navigator",
    "version": "1.1",
    "icons": {
        "128": "logo.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "minimum_chrome_version": "23",
    "description": "Tabs Search & Navigator",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "short_name": "Tabs Search & Navigator",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "script.js"
        ]
    },
    "web_accessible_resources": [
        "close.png"
    ],
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+O",
                "mac": "Command+O"
            },
            "description": "Activate Tab++"
        },
        "ordertitle": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Order By Title"
        },
        "orderurl": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "Order By URL"
        }
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.2.1.min.js",
                "jquery.mark.min.js",
                "content.js"
            ],
            "all_frames": false,
            "css": [],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ]
}