Flagwall

Flag links to paywall sites

Qu'est-ce que Flagwall ?

Flagwall est une extension Chrome développée par Andrew Ivins, et sa fonction principale est "Flag links to paywall sites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Flagwall

Téléchargez les fichiers d'extension Flagwall au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Flagwall Flagwall
ID gmlnfmmccieblogoplaacjohenlnbkae
URL Officiel https://chromewebstore.google.com/detail/flagwall/gmlnfmmccieblogoplaacjohenlnbkae
Description Flag links to paywall sites
Taille du Fichier 16.77 KB
Nombre d'Installations 27
Version Actuelle 1.0
Dernière Mise à Jour 2019-10-03
Date de Publication 2019-10-02
Développeur Andrew Ivins
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}