Peek

Allows users to preview their tabs

Peekคืออะไร?

Peek เป็นส่วนขยายของ Chrome ที่พัฒนาโดย justiniabarros และคุณลักษณะหลักของมันคือ "Allows users to preview their tabs"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Peek

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

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

                        This extension gives users the control to preview all of their open tabs on a browser window.
- Clicking CTRL+SPACE on Windows or CTRL+Q on OSX allows the user to open their tab previews page.
- Clicking on the preview will navigate the user to that tab.
- Users can choose between three different views: Group, List, and Carousel.
- Users can change the body and tab backgrounds to various different colors.
- Users can search for tab titles using the "Find" search bar on the top navigation bar.

Developed by:
Justin A. Barros - [email protected]
Luca Guarro - [email protected]
Rahul K. Shori - [email protected]                    

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

ชื่อ Peek Peek
ID icebehakioppnbnkcllakopjnmlkaabj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/peek/icebehakioppnbnkcllakopjnmlkaabj
คำอธิบาย Allows users to preview their tabs
ขนาดไฟล์ 1.69 MB
จำนวนการติดตั้ง 11
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2017-02-05
วันที่เผยแพร่ 2017-02-04
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา justiniabarros
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Peek",
    "version": "1.6",
    "manifest_version": 2,
    "description": "Allows users to preview their tabs",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Peek",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/materialize\/0.97.8\/js\/materialize.min.js; object-src 'self'",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Space",
                "mac": "MacCtrl+Q"
            }
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "scale.js"
            ]
        }
    ]
}