Feed Cleaner
Clean your social network news feed from suggested posts and ads
什麼是Feed Cleaner?
Feed Cleaner是由Arik W開發的Chrome擴展程式,該擴展的主要功能是“Clean your social network news feed from suggested posts and ads”。
擴展截圖
下載Feed Cleaner擴展crx文件
下載Feed Cleaner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | jdmiahadpnljimfcnfaebjggbfkjkgan |
官方網址 | https://chrome.google.com/webstore/detail/feed-cleaner/jdmiahadpnljimfcnfaebjggbfkjkgan |
簡介 | Clean your social network news feed from suggested posts and ads |
檔案大小 | 82.2 KB |
安裝次數 | 68 |
目前版本 | 1.0.1 |
更新時間 | 2017-05-08 |
上架時間 | 2017-05-08 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Arik W |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } |