Flagwall
Flag links to paywall sites
Cos'è Flagwall?
Flagwall è un'estensione di Chrome sviluppata da Andrew Ivins, e la sua funzione principale è "Flag links to paywall sites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Flagwall
Scarica i file di estensione Flagwall in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Flagwall |
ID | gmlnfmmccieblogoplaacjohenlnbkae |
URL Ufficiale | https://chromewebstore.google.com/detail/flagwall/gmlnfmmccieblogoplaacjohenlnbkae |
Descrizione | Flag links to paywall sites |
Dimensione del File | 16.77 KB |
Conteggio Installazioni | 27 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-10-03 |
Data di Pubblicazione | 2019-10-02 |
Sviluppatore | Andrew Ivins |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |