Remove Ads from Photopea

Hides the ads on Photopea

Was ist Remove Ads from Photopea?

Remove Ads from Photopea ist eine Chrome-Erweiterung, die von jared.schwalbe entwickelt wurde, und ihr Hauptmerkmal ist "Hides the ads on Photopea".

Erweiterungsscreenshots

screenshot

Remove Ads from Photopea-Erweiterungs-CRX-Datei herunterladen

Laden Sie Remove Ads from Photopea-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Remove Ads from Photopea Remove Ads from Photopea
ID gjkjjhgjcalgefcimahpbacihndicccn
Offizielle URL https://chromewebstore.google.com/detail/remove-ads-from-photopea/gjkjjhgjcalgefcimahpbacihndicccn
Beschreibung Hides the ads on Photopea
Dateigröße 11.44 KB
Installationsanzahl 11,324
Aktuelle Version 1.2.2
Letztes Update 2023-10-05
Veröffentlichungsdatum 2022-03-29
Bewertung 4.68/5 Insgesamt 38 Bewertungen
Entwickler jared.schwalbe
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/jared-schwalbe/remove-ads-from-photopea/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}