FA Notes Notifier
Sends you a notification whenever you get a new note on FA.
什么是FA Notes Notifier?
FA Notes Notifier是由NerdyRedPanda开发的Chrome扩展程序,该扩展的主要功能是“Sends you a notification whenever you get a new note on FA.”。
扩展截图
下载FA Notes Notifier扩展crx文件
下载FA Notes Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Must be using the most recent FA design. This extension can notify you when you get a new note on FA. No setup needed! It works in the background to notify you :) Source code is located here: https://github.com/NerdyRedPanda/FA-Notes-Notifier Permissions breakdown: Read and Change Data - Gets notes from FA, and profile pictures Display Notifications: To display the note notification.
扩展基本信息
名称 | FA Notes Notifier |
ID | jnopajjjgbhbdlbnoefacpmhcmehkigf |
官方URL | https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf |
简介 | Sends you a notification whenever you get a new note on FA. |
文件大小 | 18.95 KB |
安装次数 | 40 |
当前版本 | 1.2 |
更新时间 | 2020-02-02 |
上架时间 | 2020-02-02 |
评分 | 5.00/5 共1次评分 |
开发者 | NerdyRedPanda |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FA Notes Notifier", "description": "Sends you a notification whenever you get a new note on FA.", "version": "1.2", "browser_action": { "default_icon": "icon16.png", "default_popup": "settings.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "*:\/\/*.furaffinity.net\/*", "storage", "notifications", "*:\/\/*.facdn.net\/*", "alarms" ], "background": { "scripts": [ "browser-polyfill-min.js", "getNotes.js" ] } } |