Remove Ads from Photopea

Hides the ads on Photopea

Cos'è Remove Ads from Photopea?

Remove Ads from Photopea è un'estensione di Chrome sviluppata da jared.schwalbe, e la sua funzione principale è "Hides the ads on Photopea".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Remove Ads from Photopea

Scarica i file di estensione Remove Ads from Photopea 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

                        Install this extension to remove the ads while using the popular web-based Photoshop clone, Photopea. You'll be able to edit photos while using the entire width of your browser window.

You should still disable your regular ad blocker (AdBlock, uBlocker Origin, etc). This extension does not block the ads, it just hides them from view.

*** After installing, refresh any tabs that are running Photopea.                    

Informazioni di Base sull'Estensione

Nome Remove Ads from Photopea Remove Ads from Photopea
ID gjkjjhgjcalgefcimahpbacihndicccn
URL Ufficiale https://chromewebstore.google.com/detail/remove-ads-from-photopea/gjkjjhgjcalgefcimahpbacihndicccn
Descrizione Hides the ads on Photopea
Dimensione del File 11.44 KB
Conteggio Installazioni 11,324
Versione Corrente 1.2.2
Ultimo Aggiornamento 2023-10-05
Data di Pubblicazione 2022-03-29
Valutazione 4.68/5 Totale 38 Valutazioni
Sviluppatore jared.schwalbe
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/jared-schwalbe/remove-ads-from-photopea/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Ads from Photopea",
    "description": "Hides the ads on Photopea",
    "author": "Jared Schwalbe",
    "version": "1.2.2",
    "manifest_version": 3,
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.photopea.com\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}