Improve your Facebook (by Lapzor)
This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook.
什么是Improve your Facebook (by Lapzor)?
Improve your Facebook (by Lapzor)是由https://lapzor.com开发的Chrome扩展程序,该扩展的主要功能是“This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook.”。
扩展截图
下载Improve your Facebook (by Lapzor)扩展crx文件
下载Improve your Facebook (by Lapzor)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is not created nor endorsed by Facebook. Declutter your Facebook experience by allowing you to turn off some unneeded features, especially: - disable the homepage feed - disable notifications for likes and for "someone has posted in this group" - Remove the right sidebar - Auto-hide the chat bar on the right - Remove the like button itself - More features will be added by request :) Good for blocking sources of dark dopamine and also useful for those who manage Facebook groups since it removes the irrelevant like notifications so you can focus just on pending posts and replies.
扩展基本信息
名称 | Improve your Facebook (by Lapzor) |
ID | jndjnddhhgjcjldjiiboanjobljgmeid |
官方URL | https://chrome.google.com/webstore/detail/improve-your-facebook-by/jndjnddhhgjcjldjiiboanjobljgmeid |
简介 | This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook. |
文件大小 | 164 KB |
安装次数 | 37 |
当前版本 | 1.7 |
更新时间 | 2019-05-28 |
上架时间 | 2019-05-28 |
评分 | 5.00/5 共3次评分 |
开发者 | https://lapzor.com |
电子邮箱 | [email protected] |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improve your Facebook (by Lapzor)", "description": "This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook.", "version": "1.7", "options_page": "html\/options.html", "icons": { "48": "icon_on_48.png", "128": "icon_128.png" }, "page_action": { "default_title": "Facebook Improver", "default_icon": "icon_on_48.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*", "https:\/\/web.facebook.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_start" } ], "permissions": [ "https:\/\/www.facebook.com\/*", "https:\/\/web.facebook.com\/*", "storage" ], "web_accessible_resources": [ "css\/fix.css", "css\/hidefeed.css", "css\/hidelikes.css", "css\/hidesidebar.css", "css\/hidechat.css", "css\/hidepinned.css", "css\/hidebanner.css", "css\/hidelikebutton.css" ] } |