Feedly Preview Window
Open Feedly Links in a Preview Window using shortcut key
Feedly Preview Windowคืออะไร?
Feedly Preview Window เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rajington และคุณลักษณะหลักของมันคือ "Open Feedly Links in a Preview Window using shortcut key"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feedly Preview Window
ดาวน์โหลดไฟล์ส่วนขยาย Feedly Preview Window ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you a power user on Feedly, but annoyed that the 'v' shortcut key opens articles in a focused tab? This extension fixes that!
After installing this extension, when looking at an article in list view, simply press ; and it will open in a new preview window. Any additional articles will be opened in the same preview window. This is perfect for large or multiple monitors and offers you a full "reading pane" for your articles.
Want to change your shortcut key? Simply visit the options page.
Note: This extension is but a few line changes from Aaron Saray's awesome feedlybackgroundtab extension. This workflow is something I have sought for a long time, but I wouldn't have been able to do if Aaron hadn't open sourced and documented his extension so well. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | oodgcldmocgdhjeibiphdlippflhiiea |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/feedly-preview-window/oodgcldmocgdhjeibiphdlippflhiiea |
| คำอธิบาย | Open Feedly Links in a Preview Window using shortcut key |
| ขนาดไฟล์ | 12.29 KB |
| จำนวนการติดตั้ง | 358 |
| เวอร์ชันปัจจุบัน | 1.13.1 |
| อัปเดตครั้งล่าสุด | 2017-12-09 |
| วันที่เผยแพร่ | 2017-12-09 |
| คะแนน | 4.00/5 รวมทั้งหมด 5 คะแนน |
| ผู้พัฒนา | rajington |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow |
| URL หน้าช่วยเหลือ | https://github.com/rajington/feedlybackgroundtab/tree/feedlypreviewwindow |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Feedly Preview Window",
"version": "1.13.1",
"manifest_version": 2,
"description": "Open Feedly Links in a Preview Window using shortcut key",
"content_scripts": [
{
"matches": [
"*:\/\/*.feedly.com\/*"
],
"js": [
"js\/keypress.js"
]
}
],
"background": {
"scripts": [
"js\/background.js"
]
},
"options_page": "options.html",
"permissions": [
"http:\/\/www.feedly.com\/*",
"http:\/\/cloud.feedly.com\/*",
"https:\/\/cloud.feedly.com\/*",
"storage"
],
"minimum_chrome_version": "21",
"icons": {
"128": "images\/icon_128.png"
}
} | |