KalDrop Ad Finder
Display only ads in your newsfeed
什么是KalDrop Ad Finder?
KalDrop Ad Finder是由https://kaldrop.com开发的Chrome扩展程序,该扩展的主要功能是“Display only ads in your newsfeed”。
扩展截图
下载KalDrop Ad Finder扩展crx文件
下载KalDrop Ad Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Display only ads in your facebook newsfeed.
扩展基本信息
名称 | KalDrop Ad Finder |
ID | fehdljjkmgfegcdpganalbcffoffjbfj |
官方URL | https://chromewebstore.google.com/detail/kaldrop-ad-finder/fehdljjkmgfegcdpganalbcffoffjbfj |
简介 | Display only ads in your newsfeed |
文件大小 | 90.37 KB |
安装次数 | 303 |
当前版本 | 1.0.0.25 |
更新时间 | 2022-11-08 |
上架时间 | 2020-07-05 |
评分 | 5.00/5 共1次评分 |
开发者 | https://kaldrop.com |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://kaldrop.com/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "KalDrop Ad Finder", "description": "Display only ads in your newsfeed", "version": "1.0.0.25", "author": "Ron Hillel", "icons": { "16": "images\/icon_16.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" }, "permissions": [ "storage", "contextMenus", "https:\/\/*.facebook.com\/*", "https:\/\/*.fbcdn.net\/*" ], "browser_action": { "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/connect.facebook.net\/ https:\/\/ssl.google-analytics.com\/ https:\/\/apis.google.com https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/cdn.extensionanalytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/*.fbcdn.net\/*" ], "js": [ "jquery.js", "functions.js", "content.js" ], "all_frames": true, "runAt": "document_start" }, { "matches": [ "https:\/\/app.adspy.com\/ads\/*", "https:\/\/app.adspy.com\/ads;userId=*" ], "js": [ "jquery.js", "functions.js", "adspy.js" ], "all_frames": true, "runAt": "document_start" } ], "background": { "scripts": [ "jquery.js", "functions.js", "background.js" ], "persistent": false } } |