Detect Nofollow

Highlight rel no-follow and sponsored links on web pages. Useful for SEO

O que é Detect Nofollow?

Detect Nofollow é uma extensão do Chrome desenvolvida por Ewa Kubiak, e sua principal característica é "Highlight rel no-follow and sponsored links on web pages. Useful for SEO".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Detect Nofollow

Baixe arquivos de extensão Detect Nofollow 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

                        Detect Nofollow finds no-follow or sponsored links and highlights them. Only external links are highlighted.

Features:
- Highlights no-follow links (see screenshot)
- Enable/disable from the popup
- Customize appearance 
- Blacklist certain domains

Please note that the extension doesn’t highlight links to the same domain.                    

Informações Básicas da Extensão

Nome Detect Nofollow Detect Nofollow
ID ndihoialkhpohdgajomcmdpnjpikebcg
URL Oficial https://chrome.google.com/webstore/detail/detect-nofollow/ndihoialkhpohdgajomcmdpnjpikebcg
Descrição Highlight rel no-follow and sponsored links on web pages. Useful for SEO
Tamanho do Arquivo 123 KB
Contagem de Instalações 100,000
Versão Atual 0.18.0
Última Atualização 2021-03-23
Data de Publicação 2021-03-11
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor Ewa Kubiak
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.notion.so/Privacy-policy-Detect-Nofollow-cb675af5a62c4652805ca2e5b9eab016
Idiomas Suportados id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "offline_enabled": true,
    "name": "__MSG_name__",
    "version": "0.18.0",
    "description": "__MSG_description__",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "default_locale": "en",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png",
        "300": "images\/icon-300.png"
    },
    "browser_action": {
        "default_title": "NoFollow",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png",
            "300": "images\/icon-300.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/*.googleapis.com https:\/\/www.googletagmanager.com; object-src 'self'",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}