Hide 'Like' Notifications
Make Facebook less distractive.
什么是Hide 'Like' Notifications?
Hide 'Like' Notifications是由Hideto Ishibashi开发的Chrome扩展程序,该扩展的主要功能是“Make Facebook less distractive.”。
扩展截图
下载Hide 'Like' Notifications扩展crx文件
下载Hide 'Like' Notifications扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Farewell Facebook has changed its design to allow users to suppress distractive notifications. Just turn the More Activity About You option off in the Notifications Settings[1]. Now that you do not need this Chrome extension. Just remove it. I hope you enjoy Facebook without distraction. Regards, Hide [1]: https://www.facebook.com/settings/?tab=notifications
扩展基本信息
名称 | Hide 'Like' Notifications |
ID | kbfakkkdllpodegeoggpfcmjabodhpca |
官方URL | https://chromewebstore.google.com/detail/hide-like-notifications/kbfakkkdllpodegeoggpfcmjabodhpca |
简介 | Make Facebook less distractive. |
文件大小 | 11.15 KB |
安装次数 | 676 |
当前版本 | 1.16 |
更新时间 | 2021-02-14 |
上架时间 | 2019-04-18 |
评分 | 4.00/5 共84次评分 |
开发者 | Hideto Ishibashi |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/zerobase/fb_hide_like_notifs |
帮助页面URL | https://github.com/zerobase/fb_hide_like_notifs |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide 'Like' Notifications", "description": "Make Facebook less distractive.", "version": "1.16", "icons": { "48": "icon_on_48.png", "128": "icon_128.png" }, "page_action": { "default_title": "Hide 'Like' Notifs", "default_icon": "icon_on_48.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "css": [ "fb_hide_like_notifs_injection.css" ], "js": [ "fb_hide_like_notifs_injection.js" ] } ], "permissions": [ "https:\/\/www.facebook.com\/*" ] } |