AdStop - Social Media Adblocker
Remove all 'Sponsored' and 'Suggested For You' ads in your Facebook™ news feed.
什麼是AdStop - Social Media Adblocker?
AdStop - Social Media Adblocker是由Fellshrine Software開發的Chrome擴展程式,該擴展的主要功能是“Remove all 'Sponsored' and 'Suggested For You' ads in your Facebook™ news feed.”。
擴展截圖
下載AdStop - Social Media Adblocker擴展crx文件
下載AdStop - Social Media Adblocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
FEATURES: --Block ALL Sponsored and Suggested ads in your Facebook™ news feed --Works with NEW & OLD Facebook™ Themes --Improve browser speed while using Facebook™ --100% FREE --Saves time, so you see the things that matter to you --Multiple languages supported --I use this extension for myself, so it's always updated when something changes on Facebook™ --light weight. less than 100 lines of code DESCRIPTION: This extension blocks all sponsored and suggested ads in your Facebook™ news feed. If this takes off with popularity, I'll add on other social media platforms as well. Social media sites change the way they display ads frequently, to stop extensions like this from working, but I am committed to keeping this extension up-to-date. Rather than leaving a negative rating/review, please e-mail me if it stops working for some reason, and I will release a new version A.S.A.P. [email protected] - feel free to email with bugs, issues, or feature requests! to support AdStop, and future versions of AdStop, donations can be sent to [email protected] on paypal. Thanks & enjoy
擴展基本資訊
名稱 | |
ID | pbefabddieeaipifkohbemngjijifphn |
官方網址 | https://chrome.google.com/webstore/detail/adstop-social-media-adblo/pbefabddieeaipifkohbemngjijifphn |
簡介 | Remove all 'Sponsored' and 'Suggested For You' ads in your Facebook™ news feed. |
檔案大小 | 948 KB |
安裝次數 | 1,247 |
目前版本 | 1.2.2 |
更新時間 | 2020-03-18 |
上架時間 | 2020-03-17 |
評分 | 2.92/5 共 12 次評分 |
開發者 | Fellshrine Software |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AdStop - Social Media Adblocker", "description": "Remove all 'Sponsored' and 'Suggested For You' ads in your Facebook\u2122 news feed.", "background": { "persistent": false, "scripts": [ "script.js" ] }, "permissions": [ "activeTab", "tabs", "*:\/\/*.facebook.com\/*" ], "version": "1.2.2", "icons": { "19": "assets\/images\/logos\/19.png", "38": "assets\/images\/logos\/38.png", "64": "assets\/images\/logos\/64.png", "128": "assets\/images\/logos\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery.js", "ads.js" ], "css": [] } ], "web_accessible_resources": [], "externally_connectable": { "matches": [ "*:\/\/*.facebook.com\/*" ] } } |