Verify Me
Add a button to the browser to check rel=me links point back
Wat is Verify Me?
Verify Me is een Chrome-extensie ontwikkeld door https://kevinmarks.com, en de belangrijkste functie is "Add a button to the browser to check rel=me links point back".
Extensie Screenshots
Download het CRX-bestand van de extensie Verify Me
Download Verify Me-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Verify Me |
ID | nnefkajddpfponfnmaflddipljfdlcjb |
Officiële URL | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
Beschrijving | Add a button to the browser to check rel=me links point back |
Bestandsgrootte | 24.16 KB |
Aantal Installaties | 557 |
Huidige Versie | 0.3.1 |
Laatst Bijgewerkt | 2018-11-04 |
Publicatiedatum | 2018-11-03 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://kevinmarks.com |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://github.com/indieweb/verify-me |
Ondersteunde Talen | 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" } } |