SourceKnowledge Link Monetizer

Easily find whether a product link on the web is monetizable with SourceKnowledge

O que é SourceKnowledge Link Monetizer?

SourceKnowledge Link Monetizer é uma extensão do Chrome desenvolvida por SourceKnowledge, e sua principal característica é "Easily find whether a product link on the web is monetizable with SourceKnowledge".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SourceKnowledge Link Monetizer

Baixe arquivos de extensão SourceKnowledge Link Monetizer 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

                        The SourceKnowledge Link Monetizer helps publishers quickly identify and retrieve monetizable product links on the web. 

Simply install the SourceKnowledge Link Monetizer Chrome Extension. This will add a button to your Chrome toolbar, from which you’ll enter your Placement ID. 
Your Placement ID is a 4-digit number associated to your traffic that can be found in your dashboard by navigating to Reporting by Placement. 

Once your placement ID has been entered, go about your internet surfing and with the click of a button, you’ll be able to quickly and easily see whether a product URL is monetizable with SourceKnowledge, the current CPC rate, and your final monetized link.

If you’re not already a SourceKnowledge publisher, you can sign up by visiting https://sourceknowledge.com/partner-channel!                    

Informações Básicas da Extensão

Nome SourceKnowledge Link Monetizer SourceKnowledge Link Monetizer
ID ponefgbafpmoajcopljdipofobmhpjbg
URL Oficial https://chromewebstore.google.com/detail/sourceknowledge-link-mone/ponefgbafpmoajcopljdipofobmhpjbg
Descrição Easily find whether a product link on the web is monetizable with SourceKnowledge
Tamanho do Arquivo 213 KB
Contagem de Instalações 31
Versão Atual 1.0.2
Última Atualização 2024-02-07
Data de Publicação 2021-10-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor SourceKnowledge
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://sourceknowledge.com/partner-channel
URL da Página de Política de Privacidade https://www.sourceknowledge.com/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SourceKnowledge Link Monetizer",
    "description": "Easily find whether a product link on the web is monetizable with SourceKnowledge",
    "version": "1.0.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_title": "SourceKnowledge Link Monetizer"
    },
    "icons": {
        "16": "SK-Logo-16x16.png",
        "32": "SK-Logo-32x32.png",
        "48": "SK-Logo-48x48.png",
        "128": "SK-Logo-128x128.png"
    },
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}