Copy Cat
Quickly copy the title of page and url into your clipboard!
Copy Catคืออะไร?
Copy Cat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kiichi และคุณลักษณะหลักของมันคือ "Quickly copy the title of page and url into your clipboard!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Cat
ดาวน์โหลดไฟล์ส่วนขยาย Copy Cat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly Copy Title and URL from Chrome Toolbar. After Install the extension, click the copy cat icon in Chrome's Toolbar. You can quickly copy Title and URL to the clipboard in different format. It's easy to paste the text in chat window, email, and so on. [Supported Format] - "Title - URL" - "[Title] URL" - Copy in Two Lines - Rich Text Link - HTML Link - Markdown Link - BBCode - Url Only - Title Only [Copy Mode] Either copy the current tab or select "All Tabs" for batch copy. [Shortcut / Hotkey] Copy Rich Text: - Windows: Alt+Shift+C - Mac: Ctrl+Shift+C Copy Markdown: - Windows: Alt+Shift+D - Mac: Ctrl+Shift+D Copy Title - URL: - Windows: Alt+Shift+X - Mac: Ctrl+Shift+X Copy Previous Format: - Windows: Alt+Shift+Z - Mac: Ctrl+Shift+Z [Settings] - Font Size - Column Layout - Sort Order - Context Menu On / Off - Shortcut Configuration coming soon! [Clean Format] The extension will clean up typical notification count prefix like "(4)" in the title (Thanks to David Jeske!) Icon credit : M.Y
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Copy Cat |
ID | andlmjmbnlaamloflnelcafcnkiplhkc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/copy-cat/andlmjmbnlaamloflnelcafcnkiplhkc |
คำอธิบาย | Quickly copy the title of page and url into your clipboard! |
ขนาดไฟล์ | 58.19 KB |
จำนวนการติดตั้ง | 2,096 |
เวอร์ชันปัจจุบัน | 1.8.0 |
อัปเดตครั้งล่าสุด | 2020-06-02 |
วันที่เผยแพร่ | 2020-06-01 |
คะแนน | 5.00/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | kiichi |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/kiichi/QuickCopyTitleAndURL/ |
URL หน้าช่วยเหลือ | https://github.com/kiichi/QuickCopyTitleAndURL/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Cat", "description": "Quickly copy the title of page and url into your clipboard!", "version": "1.8.0", "permissions": [ "tabs", "clipboardWrite", "notifications", "storage", "contextMenus" ], "browser_action": { "default_title": "Copy Title and URL", "default_icon": "icons\/icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "common.js", "background.js" ], "persistent": false }, "commands": { "shortcut-c": { "suggested_key": { "default": "Alt+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy Rich Text" }, "shortcut-x": { "suggested_key": { "default": "Alt+Shift+X", "mac": "MacCtrl+Shift+X" }, "description": "Copy Title - URL" }, "shortcut-d": { "suggested_key": { "default": "Alt+Shift+D", "mac": "MacCtrl+Shift+D" }, "description": "Copy Markdown" }, "shortcut-z": { "suggested_key": { "default": "Alt+Shift+Z", "mac": "MacCtrl+Shift+Z" }, "description": "Repeat previous copy" } } } |