Remove Ads from Photopea

Hides the ads on Photopea

O que é Remove Ads from Photopea?

Remove Ads from Photopea é uma extensão do Chrome desenvolvida por jared.schwalbe, e sua principal característica é "Hides the ads on Photopea".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Remove Ads from Photopea

Baixe arquivos de extensão Remove Ads from Photopea no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Remove Ads from Photopea Remove Ads from Photopea
ID gjkjjhgjcalgefcimahpbacihndicccn
URL Oficial https://chromewebstore.google.com/detail/remove-ads-from-photopea/gjkjjhgjcalgefcimahpbacihndicccn
Descrição Hides the ads on Photopea
Tamanho do Arquivo 11.44 KB
Contagem de Instalações 11,324
Versão Atual 1.2.2
Última Atualização 2023-10-05
Data de Publicação 2022-03-29
Classificação 4.68/5 Total de 38 Avaliações
Desenvolvedor jared.schwalbe
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/jared-schwalbe/remove-ads-from-photopea/issues
Idiomas Suportados 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"
            ]
        }
    ]
}