KalDrop Ad Finder

Display only ads in your newsfeed

Cos'è KalDrop Ad Finder?

KalDrop Ad Finder è un'estensione di Chrome sviluppata da https://kaldrop.com, e la sua funzione principale è "Display only ads in your newsfeed".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione KalDrop Ad Finder

Scarica i file di estensione KalDrop Ad Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Display only ads in your facebook newsfeed.                    

Informazioni di Base sull'Estensione

Nome KalDrop Ad Finder KalDrop Ad Finder
ID fehdljjkmgfegcdpganalbcffoffjbfj
URL Ufficiale https://chromewebstore.google.com/detail/kaldrop-ad-finder/fehdljjkmgfegcdpganalbcffoffjbfj
Descrizione Display only ads in your newsfeed
Dimensione del File 90.37 KB
Conteggio Installazioni 303
Versione Corrente 1.0.0.25
Ultimo Aggiornamento 2022-11-08
Data di Pubblicazione 2020-07-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://kaldrop.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://kaldrop.com/privacy-policy
Lingue Supportate 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
    }
}