The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

什么是The Old Reader Notifier?

The Old Reader Notifier是由https://theoldreader.com开发的Chrome扩展程序,该扩展的主要功能是“Notifies you about unread items in your The Old Reader account”。

扩展截图

screenshot
screenshot

下载The Old Reader Notifier扩展crx文件

下载The Old Reader Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
官方URL https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
简介 Notifies you about unread items in your The Old Reader account
文件大小 72.95 KB
安装次数 3,603
当前版本 1.5.3
更新时间 2021-01-22
上架时间 2017-09-05
评分 4.63/5 共152次评分
开发者 https://theoldreader.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://theoldreader.com/
帮助页面URL https://github.com/knyar/theoldreader-chrome/
支持的语言 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"
        }
    ]
}