Feed Cleaner
Clean your social network news feed from suggested posts and ads
Qu'est-ce que Feed Cleaner ?
Feed Cleaner est une extension Chrome développée par Arik W, et sa fonction principale est "Clean your social network news feed from suggested posts and ads".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Feed Cleaner
Téléchargez les fichiers d'extension Feed Cleaner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Keep those suggested posts and ads out of your social network news feed. Which social network? Say "Phase-book" out loud 3 times. The suggested posts and ads will collapse into a minimal row, allowing you to take a peek with a single click. Your privacy is our top priority. We do not send any data to any server. Period. News Feed Cleaner - Take control on your social network.
Informations de Base sur l'Extension
Nom | |
ID | jdmiahadpnljimfcnfaebjggbfkjkgan |
URL Officiel | https://chrome.google.com/webstore/detail/feed-cleaner/jdmiahadpnljimfcnfaebjggbfkjkgan |
Description | Clean your social network news feed from suggested posts and ads |
Taille du Fichier | 82.2 KB |
Nombre d'Installations | 68 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2017-05-08 |
Date de Publication | 2017-05-08 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Arik W |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feed Cleaner", "manifest_version": 2, "version": "1.0.1", "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "js": [ "vendor\/jquery-1.11.3.min.js", "defaults.js", "main.js" ], "run_at": "document_start", "all_frames": false, "css": [] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "browser_action": { "default_icon": "images\/icon48.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "defaults.js", "background.js" ] }, "permissions": [ "storage" ], "incognito": "split", "web_accessible_resources": [ "images\/icon256.png", "images\/chevron-d.png", "images\/chevron-r.png" ], "description": "Clean your social network news feed from suggested posts and ads" } |