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 |
Eメール | [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 } } |