My Newsfeed
This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links
什么是My Newsfeed?
My Newsfeed是由https://poordeveloper.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links”。
扩展截图
下载My Newsfeed扩展crx文件
下载My Newsfeed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever wanted to remove Sponsored Content from your Facebook Feed? Well, here is a solution with lots of added features. You can specify which stuff to block from your Facebook just by checking the checkboxes. Currently, you can block Images, Albums, Videos, Ads and Shared Links. GIT: https://github.com/AhmadHassanAwan/my-newsfeed Webpage: http://poordeveloper.com/my-newsfeed/ Contact me @ [email protected]
扩展基本信息
名称 | My Newsfeed |
ID | afknifooipbmhinfgeipenkjfdlncihg |
官方URL | https://chromewebstore.google.com/detail/my-newsfeed/afknifooipbmhinfgeipenkjfdlncihg |
简介 | This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links |
文件大小 | 85.86 KB |
安装次数 | 40 |
当前版本 | 1 |
更新时间 | 2017-05-18 |
上架时间 | 2017-05-18 |
开发者 | https://poordeveloper.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://poordeveloper.com/my-newsfeed/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My Newsfeed", "short_name": "My Newsfeed", "version": "1", "manifest_version": 2, "description": "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links", "icons": { "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/jquery-2.1.4.js", "scripts\/background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "js": [ "scripts\/jquery-2.1.4.js", "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": [], "default_title": "my newsfeed", "default_popup": "popup.html" } } |