Verify Me
Add a button to the browser to check rel=me links point back
Cos'è Verify Me?
Verify Me è un'estensione di Chrome sviluppata da https://kevinmarks.com, e la sua funzione principale è "Add a button to the browser to check rel=me links point back".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Verify Me
Scarica i file di estensione Verify Me 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
Looks for rel="me" links on the current page, then check if they link back with a rel="me" too. Shows a green √ or red x depending on whether they do or not.
Informazioni di Base sull'Estensione
Nome | Verify Me |
ID | nnefkajddpfponfnmaflddipljfdlcjb |
URL Ufficiale | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
Descrizione | Add a button to the browser to check rel=me links point back |
Dimensione del File | 24.16 KB |
Conteggio Installazioni | 557 |
Versione Corrente | 0.3.1 |
Ultimo Aggiornamento | 2018-11-04 |
Data di Pubblicazione | 2018-11-03 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://kevinmarks.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://github.com/indieweb/verify-me |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Verify Me", "short_name": "Verify Me", "description": "Add a button to the browser to check rel=me links point back", "version": "0.3.1", "background": { "scripts": [ "background.js" ] }, "content-scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle", "css": [ "balloons.css" ], "js": [ "balloons.js" ] } ], "permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_title": "Check rel-me links on this page.", "default_icon": { "19": "icon-32.png", "38": "icon-32.png" } }, "icons": { "32": "icon-32.png", "128": "icon.png" } } |