AOL Reader Notifier

Checks AOL Reader for the number of unread items

AOL Reader Notifierคืออะไร?

AOL Reader Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LateTide และคุณลักษณะหลักของมันคือ "Checks AOL Reader for the number of unread items"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AOL Reader Notifier

ดาวน์โหลดไฟล์ส่วนขยาย AOL Reader Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        *Important* The time between password requests are absolutely controlled by AOL, and I don't have any way to extend it. It is usually 14 days long.


AOL Reader is a nicely designed and easy-to-use RSS aggregator. This extension is an unofficial application that periodically checks the users unread items, and shows this number in the extension icon area. 

AOL is using AOL OAuth to identify the user, and the extension only stores a token on the client side that allows it to access the Reader. This token can only be used for accessing Reader though, and no other AOL services. For security reasons the user is required to re-log every time when the token expires (about once in a fortnight)

Changelog:
1.0.6:
Allowed login with external identities (Facebook, Google, etc)
Fixed a bug about the handling of folders

1.0.5:
Options window
Further improvements of the flow

1.0.4:
Eliminated a scenario when the token was unnecessarily fetched from the store 
Improvements of the flow and notifications

1.0.2:
Fixing Manifest issue

1.0.1:
The main flow is working, the application refreshes the count every five minutes

1.0.0:
Initial                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AOL Reader Notifier AOL Reader Notifier
ID ngnmeggljaphpedmefdlahnagiojlfka
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aol-reader-notifier/ngnmeggljaphpedmefdlahnagiojlfka
คำอธิบาย Checks AOL Reader for the number of unread items
ขนาดไฟล์ 21.14 KB
จำนวนการติดตั้ง 198
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2014-09-01
วันที่เผยแพร่ 2014-09-01
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา LateTide
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AOL Reader Notifier",
    "author": "LateTide",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "Checks AOL Reader for the number of unread items",
    "offline_enabled": false,
    "options_page": "options.html",
    "background": {
        "scripts": [
            "aolreaderchecker.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "readerIcon19.png",
        "default_title": "AOL Reader Notifier"
    },
    "icons": {
        "16": "readerIcon16.png",
        "48": "readerIcon48.png",
        "128": "readerIcon128.png"
    },
    "permissions": [
        "alarms",
        "https:\/\/reader.aol.com\/",
        "https:\/\/api.screenname.aol.com\/auth\/authorize",
        "identity",
        "storage",
        "notifications"
    ]
}