Peek: Preview PDFs, Office files, and more
Preview documents, videos, music, and more with a mouse hover.
Peek: Preview PDFs, Office files, and moreคืออะไร?
Peek: Preview PDFs, Office files, and more เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Corbin Davenport และคุณลักษณะหลักของมันคือ "Preview documents, videos, music, and more with a mouse hover."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Peek: Preview PDFs, Office files, and more
ดาวน์โหลดไฟล์ส่วนขยาย Peek: Preview PDFs, Office files, and more ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Peek is a browser extension that shows previews for links to files and supported services in web pages. Just hover your mouse over a link, and Peek will display a small popup with an interactive preview of the link's content. Peek can show previews for PDFs, Microsoft Office documents, YouTube video links, audio files, Google Docs, and much more. It uses the browser's built-in rendering features, in combination with the Google Docs Viewer, Microsoft Office Web Viewer, and other third-party embedded viewers to display rich previews. Supported file types: - PDF, TXT, and RTF documents - WebM, MP4, M4V, OGG, OGV, and Imgur GIFV video - MP3, M4A, OGA, OGG, and WAV audio - Word documents (.doc, .docx) - Excel spreadsheets (.xls, .xlsx) - PowerPoint files (.ppt, .pptx) - OpenDocument files (.odt, .ods, etc.) - JPG, PNG, APNG, SVG, GIF, ICO, and BMP images Supported links: - Google Docs links - iCloud Keynote links - YouTube videos and Shorts - Reddit links - Imgur links - TikTok videos - Mastodon posts - Facebook posts - Instagram posts and reels - Threads posts - Spotify tracks, albums, and podcast episodes Peek is open source under the GPL license. The code is available here: https://github.com/corbindavenport/peek
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Peek: Preview PDFs, Office files, and more |
ID | bfpogemllmpcpclnadighnpeeaegigjk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/peek-preview-pdfs-office/bfpogemllmpcpclnadighnpeeaegigjk |
คำอธิบาย | Preview documents, videos, music, and more with a mouse hover. |
ขนาดไฟล์ | 197 KB |
จำนวนการติดตั้ง | 3,005 |
เวอร์ชันปัจจุบัน | 6.0 |
อัปเดตครั้งล่าสุด | 2023-11-06 |
วันที่เผยแพร่ | 2019-07-06 |
คะแนน | 3.83/5 รวมทั้งหมด 18 คะแนน |
ผู้พัฒนา | Corbin Davenport |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/corbindavenport/peek |
URL หน้าช่วยเหลือ | https://github.com/corbindavenport/peek/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Peek: Preview PDFs, Office files, and more", "short_name": "Peek", "version": "6.0", "author": "Corbin Davenport", "description": "Preview documents, videos, music, and more with a mouse hover.", "homepage_url": "https:\/\/github.com\/corbindavenport\/peek", "options_ui": { "page": "settings.html", "open_in_tab": true }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "js\/background.js" }, "icons": { "32": "img\/icon_x32.png", "48": "img\/icon_x48.png", "128": "img\/icon_x128.png" }, "web_accessible_resources": [ { "resources": [ "img\/arrow-up-right-circle.svg", "img\/gear.svg" ], "matches": [ "*:\/\/*\/*" ] } ], "action": { "default_icon": { "32": "img\/icon_x32.png", "48": "img\/icon_action_x48.png", "128": "img\/icon_action_x128.png" }, "action": [] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/popper.min.js", "js\/tippy-bundle.umd.min.js", "js\/purify.js", "js\/peek.js" ], "css": [ "css\/peek.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.threads.net\/*utm_source=peek_extension*" ], "css": [ "css\/threads.css" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "https:\/\/embed.reddit.com\/r\/*utm_source=peek_extension*" ], "css": [ "css\/reddit.css" ], "all_frames": true, "run_at": "document_end" } ] } |