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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fellshrine Software และคุณลักษณะหลักของมันคือ "Remove all 'Sponsored' and 'Suggested For You' ads in your Facebook™ news feed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AdStop - Social Media Adblocker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/*" ] } } |