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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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\/*" ] } } |