Feedly Subscriber
One-click subscribe with Feedly
Feedly Subscriberคืออะไร?
Feedly Subscriber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย p3lim และคุณลักษณะหลักของมันคือ "One-click subscribe with Feedly"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feedly Subscriber
ดาวน์โหลดไฟล์ส่วนขยาย Feedly Subscriber ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Feedly Subscriber is a Chrome extension for Feedly, which allows you to easily add new feeds, one click away!
I made this as a superior alternative to Google's RSS subscription extension, specifically for Feedly.
Also, see my Feedly Counter extension:
http://bit.ly/feedly-counter ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | kflhgnleiaemnemmnbfndohdoabfnock |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/feedly-subscriber/kflhgnleiaemnemmnbfndohdoabfnock |
| คำอธิบาย | One-click subscribe with Feedly |
| ขนาดไฟล์ | 9.66 KB |
| จำนวนการติดตั้ง | 429 |
| เวอร์ชันปัจจุบัน | 1.1.0 |
| อัปเดตครั้งล่าสุด | 2015-01-30 |
| วันที่เผยแพร่ | 2015-01-30 |
| คะแนน | 4.55/5 รวมทั้งหมด 20 คะแนน |
| ผู้พัฒนา | p3lim |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/p3lim/feedly-subscriber |
| URL หน้าช่วยเหลือ | https://github.com/p3lim/feedly-subscriber/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Feedly Subscriber",
"description": "One-click subscribe with Feedly",
"version": "1.1.0",
"icons": {
"128": "images\/icon128.png",
"48": "images\/icon48.png"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/sniffer.js"
]
}
],
"page_action": {
"default_icon": "images\/icon48.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"scripts\/background.js"
]
}
} | |