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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

KalDrop Ad Finder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Display only ads in your facebook newsfeed.                    

확장 프로그램 기본 정보

이름 KalDrop Ad Finder 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
    }
}