The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

The Old Reader Notifier là gì?

The Old Reader Notifier là một tiện ích mở rộng Chrome được phát triển bởi https://theoldreader.com, và tính năng chính của nó là "Notifies you about unread items in your The Old Reader account".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng The Old Reader Notifier

Tải xuống các tệp mở rộng The Old Reader Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension provides a toolbar icon to notify you about unread items in your The Old Reader account, and context menu items to quickly subscribe to or bookmark a page.

Also provides support for [b] shortcut in The Old Reader (open in background)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
URL Chính Thức https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Mô tả Notifies you about unread items in your The Old Reader account
Kích Thước Tệp 72.95 KB
Số Lần Cài Đặt 3,603
Phiên Bản Hiện Tại 1.5.3
Cập Nhật Lần Cuối 2021-01-22
Ngày Phát Hành 2017-09-05
Đánh Giá 4.63/5 Tổng số 152 Đánh Giá
Nhà Phát Triển https://theoldreader.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://theoldreader.com/
URL Trang Trợ Giúp https://github.com/knyar/theoldreader-chrome/
Ngôn Ngữ Được Hỗ Trợ en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.5.3",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/functions.js",
            "js\/storage.js",
            "js\/background.js",
            "js\/menu.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-inactive.png",
            "38": "img\/icon-inactive-scale2.png"
        },
        "default_title": "The Old Reader"
    },
    "permissions": [
        "tabs",
        "notifications",
        "storage",
        "contextMenus",
        "*:\/\/theoldreader.com\/"
    ],
    "web_accessible_resources": [
        "img\/icon-48.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/theoldreader.com\/*"
            ],
            "js": [
                "js\/observer.js"
            ],
            "run_at": "document_idle"
        }
    ]
}