Feedbin Notifier

Provides a basic notification service for the RSS aggregator Feedbin.

什麼是Feedbin Notifier?

Feedbin Notifier是由Thunraz開發的Chrome擴展程式,該擴展的主要功能是“Provides a basic notification service for the RSS aggregator Feedbin.”。

擴展截圖

screenshot
screenshot

下載Feedbin Notifier擴展crx文件

下載Feedbin Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Feedbin Notifier shows how many unread feeds you have in your Feedbin account.

Just enter your login credentials, hit Save and you're good to go!

While reading through the articles in Feedbin, the unread items badge on the extension is updated live.                    

擴展基本資訊

名稱 Feedbin Notifier Feedbin Notifier
ID ciijafmjfcdbilnifhohdfhojaokpcpg
官方網址 https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg
簡介 Provides a basic notification service for the RSS aggregator Feedbin.
檔案大小 16.44 KB
安裝次數 51
目前版本 1.0.0
更新時間 2021-04-16
上架時間 2018-05-28
評分 5.00/5 共 3 次評分
開發者 Thunraz
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Thunraz",
    "version": "1.0.0",
    "name": "Feedbin Notifier",
    "description": "Provides a basic notification service for the RSS aggregator Feedbin.",
    "icons": {
        "16": "images\/feedbin-16.png",
        "32": "images\/feedbin-32.png",
        "48": "images\/feedbin-48.png",
        "128": "images\/feedbin-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/feedbin.com\/*",
                "https:\/\/www.feedbin.com\/*"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/feedbin.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/browser-polyfill.min.js",
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/feedbin-16.png",
            "32": "images\/feedbin-32.png",
            "48": "images\/feedbin-48.png",
            "128": "images\/feedbin-128.png"
        }
    },
    "permissions": [
        "alarms",
        "https:\/\/*.feedbin.com\/*"
    ],
    "web_accessible_resources": [
        "js\/feedbin.js"
    ]
}