Verify Me
Add a button to the browser to check rel=me links point back
Qu'est-ce que Verify Me ?
Verify Me est une extension Chrome développée par https://kevinmarks.com, et sa fonction principale est "Add a button to the browser to check rel=me links point back".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Verify Me
Téléchargez les fichiers d'extension Verify Me 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
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.
Informations de Base sur l'Extension
Nom | Verify Me |
ID | nnefkajddpfponfnmaflddipljfdlcjb |
URL Officiel | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
Description | Add a button to the browser to check rel=me links point back |
Taille du Fichier | 24.16 KB |
Nombre d'Installations | 557 |
Version Actuelle | 0.3.1 |
Dernière Mise à Jour | 2018-11-04 |
Date de Publication | 2018-11-03 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://kevinmarks.com |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://github.com/indieweb/verify-me |
Langues Prises en Charge | 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" } } |