Feedly Background Tab Open
Open Feedly Links in Background Tab using shortcut key
Feedly Background Tab Openคืออะไร?
Feedly Background Tab Open เป็นส่วนขยายของ Chrome ที่พัฒนาโดย k-yogo และคุณลักษณะหลักของมันคือ "Open Feedly Links in Background Tab using shortcut key"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feedly Background Tab Open
ดาวน์โหลดไฟล์ส่วนขยาย Feedly Background Tab Open ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
In the default Feedly (feedly.com, an RSS Reader Service), article links open in a separate tab when using the "v" shortcut key. However, this does not open the link in the background. With this extension, you can open article links in a separate background tab using the new custom shortcut key. In the version 1.0, it is now possible to customize shortcut key configurations. If you like the extension please support the developer (donation link is put).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Feedly Background Tab Open |
ID | knekhffbanfpccociahfjklboipfkecm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm |
คำอธิบาย | Open Feedly Links in Background Tab using shortcut key |
ขนาดไฟล์ | 13.95 KB |
จำนวนการติดตั้ง | 98 |
เวอร์ชันปัจจุบัน | 1.24 |
อัปเดตครั้งล่าสุด | 2023-05-25 |
วันที่เผยแพร่ | 2023-03-28 |
คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | k-yogo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/k-yogo/feedly-background-tab-open |
URL หน้าช่วยเหลือ | https://github.com/k-yogo/feedly-background-tab-open |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feedly Background Tab Open", "description": "Open Feedly Links in Background Tab using shortcut key", "version": "1.24", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": "128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.feedly.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "storage" ] } |