Promoted Pin Hider

Hides Promoted Pins

Cos'è Promoted Pin Hider?

Promoted Pin Hider è un'estensione di Chrome sviluppata da steve.kroodsma, e la sua funzione principale è "Hides Promoted Pins".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Promoted Pin Hider

Scarica i file di estensione Promoted Pin Hider 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

                        For Pinterest. Puts a big ol' gap where promoted pins used to be. It ain't PinBlock, but it's better than nothing.

IF YOU ARE STILL SEEING ADS: Please upload a screenshot of your pinterest feed to an image hosting site and include that url in your support post. This will help me identify what the problem might be.

**Updated 09/12/19 - Noticed that some non-ad pins were getting blocked, so that's been fixed. Let me know if any ads sneak through.**

**Updated 08/13/19 - Trying some new stuff out. The app now runs when you first interact with the page, so it's less resource-heavy but you might see an ad before you start scrolling.**

**Updated 03/29/19 - Updated script so it starts before page load, which might help. Or it might not. But it probably won't make it worse?**

**Updated 03/25/19 - Changed method by which script selects promoted pins, hopefully this should fix issues some people have been having**

**Updated 02/25/19 - Added support for all languages!!! That means I looked at ads in every single language that pinterest supports, because I love you all.**


**Updated 11/27/17 - Added support for every international Pinterest domain - Extension should work in every country as long as your language is set to English.**


**Updated 10/13/17 - Added support for Pinterest.ca**


**Updated 07/05/17 - Updated so that it won't break every time Pinterest updates their code.**                    

Informazioni di Base sull'Estensione

Nome Promoted Pin Hider Promoted Pin Hider
ID mepooemkkklmilplmgkeljlnpnokjlbo
URL Ufficiale https://chromewebstore.google.com/detail/promoted-pin-hider/mepooemkkklmilplmgkeljlnpnokjlbo
Descrizione Hides Promoted Pins
Dimensione del File 46.57 KB
Conteggio Installazioni 3,607
Versione Corrente 1.1.8
Ultimo Aggiornamento 2020-05-15
Data di Pubblicazione 2020-05-14
Valutazione 4.24/5 Totale 87 Valutazioni
Sviluppatore steve.kroodsma
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Promoted Pin Hider",
    "manifest_version": 2,
    "version": "1.1.8",
    "description": "Hides Promoted Pins",
    "browser_action": {
        "name": "Manipulate DOM"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.0.0.min.js",
                "background.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/www.pinterest.com\/*",
                "https:\/\/www.pinterest.com\/*",
                "http:\/\/www.pinterest.ca\/*",
                "https:\/\/www.pinterest.ca\/*",
                "https:\/\/www.pinterest.co.uk\/*",
                "https:\/\/gr.pinterest.com\/*",
                "https:\/\/in.pinterest.com\/*",
                "https:\/\/www.pinterest.ie\/*",
                "https:\/\/it.pinterest.com\/*",
                "https:\/\/www.pinterest.ch\/*",
                "https:\/\/cz.pinterest.com\/*",
                "https:\/\/id.pinterest.com\/*",
                "https:\/\/www.pinterest.es\/*",
                "https:\/\/ru.pinterest.com\/*",
                "https:\/\/nl.pinterest.com\/*",
                "https:\/\/br.pinterest.com\/*",
                "https:\/\/no.pinterest.com\/*",
                "https:\/\/tr.pinterest.com\/*",
                "https:\/\/www.pinterest.com.au\/*",
                "https:\/\/www.pinterest.at\/*",
                "https:\/\/pl.pinterest.com\/*",
                "https:\/\/www.pinterest.fr\/*",
                "https:\/\/ro.pinterest.com\/*",
                "https:\/\/www.pinterest.de\/*",
                "https:\/\/www.pinterest.dk\/*",
                "https:\/\/www.pinterest.nz\/*",
                "https:\/\/fi.pinterest.com\/*",
                "https:\/\/hu.pinterest.com\/*",
                "https:\/\/www.pinterest.jp\/*",
                "https:\/\/www.pinterest.pt\/*",
                "https:\/\/ar.pinterest.com\/*",
                "https:\/\/www.pinterest.co.kr\/*",
                "https:\/\/www.pinterest.se\/*",
                "https:\/\/www.pinterest.com.mx\/*",
                "https:\/\/sk.pinterest.com\/*",
                "https:\/\/www.pinterest.cl\/*",
                "https:\/\/co.pinterest.com\/*",
                "https:\/\/za.pinterest.com\/*"
            ]
        }
    ]
}