My Newsfeed
This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links
Cos'è My Newsfeed?
My Newsfeed è un'estensione di Chrome sviluppata da https://poordeveloper.com, e la sua funzione principale è "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione My Newsfeed
Scarica i file di estensione My Newsfeed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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]
Informazioni di Base sull'Estensione
Nome | My Newsfeed |
ID | afknifooipbmhinfgeipenkjfdlncihg |
URL Ufficiale | https://chromewebstore.google.com/detail/my-newsfeed/afknifooipbmhinfgeipenkjfdlncihg |
Descrizione | This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links |
Dimensione del File | 85.86 KB |
Conteggio Installazioni | 40 |
Versione Corrente | 1 |
Ultimo Aggiornamento | 2017-05-18 |
Data di Pubblicazione | 2017-05-18 |
Sviluppatore | https://poordeveloper.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://poordeveloper.com/my-newsfeed/ |
Lingue Supportate | 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" } } |