Flagwall

Flag links to paywall sites

O que é Flagwall?

Flagwall é uma extensão do Chrome desenvolvida por Andrew Ivins, e sua principal característica é "Flag links to paywall sites".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flagwall

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

                        Flagwall will scan each page for text hyperlinks to known domains that operate a paywall. It will flag each of these links with a dotted red underline so that you know before you click on it that it's likely to hit you with a paywall.

Flagwall does not attempt to block or subvert paywalls in any way. It merely exists to give the user an option of avoiding the typical bait and switch of following a link, only to be faced with a paywall.                    

Informações Básicas da Extensão

Nome Flagwall Flagwall
ID gmlnfmmccieblogoplaacjohenlnbkae
URL Oficial https://chromewebstore.google.com/detail/flagwall/gmlnfmmccieblogoplaacjohenlnbkae
Descrição Flag links to paywall sites
Tamanho do Arquivo 16.77 KB
Contagem de Instalações 27
Versão Atual 1.0
Última Atualização 2019-10-03
Data de Publicação 2019-10-02
Desenvolvedor Andrew Ivins
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flagwall",
    "version": "1.0",
    "description": "Flag links to paywall sites",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_tite": "Flagwall",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "flaglinks.js"
            ]
        }
    ],
    "manifest_version": 2
}