Feedly tabs
Open Feedly articles in new tabs
Feedly tabsคืออะไร?
Feedly tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peter Leitzen และคุณลักษณะหลักของมันคือ "Open Feedly articles in new tabs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feedly tabs
ดาวน์โหลดไฟล์ส่วนขยาย Feedly tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
See https://github.com/splattael/chrome-feedly-tabs for source. == Changes Version 0.4.0 * Inject green "TABS" button into feedly.com as an alternative to pageAction Version 0.3.1 * Fix message passing for newer Chrome versions. Version 0.3.0 * Require permission for Feedly's https version. Version 0.2.0 * Use pageAction instead of browserAction. Version 0.1.0 * Feedly changed URL to cloud.feedly.com. Please upgrade! * Added some icons.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Feedly tabs |
ID | bbknmbmpegpkeamflgefmekmjjhgddhk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/feedly-tabs/bbknmbmpegpkeamflgefmekmjjhgddhk |
คำอธิบาย | Open Feedly articles in new tabs |
ขนาดไฟล์ | 57.75 KB |
จำนวนการติดตั้ง | 104 |
เวอร์ชันปัจจุบัน | 0.4.0 |
อัปเดตครั้งล่าสุด | 2017-08-10 |
วันที่เผยแพร่ | 2017-08-10 |
คะแนน | 3.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Peter Leitzen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Feedly tabs", "description": "Open Feedly articles in new tabs", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "version": "0.4.0", "permissions": [ "tabs", "http:\/\/*.feedly.com\/home*", "https:\/\/*.feedly.com\/home*" ], "page_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Open Feedly articles in new tabs" }, "content_scripts": [ { "matches": [ "https:\/\/feedly.com\/*" ], "js": [ "js\/inject_action_button.js" ] } ], "background": { "scripts": [ "js\/background.js" ] } } |