Feed Cleaner
Clean your social network news feed from suggested posts and ads
Vad är Feed Cleaner?
Feed Cleaner är en Chrome-tillägg utvecklad av Arik W, och dess huvudfunktion är "Clean your social network news feed from suggested posts and ads".
Tilläggsskärmbilder
Ladda ner Feed Cleaner-förlängningens CRX-fil
Ladda ner Feed Cleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | jdmiahadpnljimfcnfaebjggbfkjkgan |
Officiell webbadress | https://chrome.google.com/webstore/detail/feed-cleaner/jdmiahadpnljimfcnfaebjggbfkjkgan |
Beskrivning | Clean your social network news feed from suggested posts and ads |
Filstorlek | 82.2 KB |
Antal Installationer | 68 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2017-05-08 |
Publiceringsdatum | 2017-05-08 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Arik W |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |