Verify Me
Add a button to the browser to check rel=me links point back
What is Verify Me?
Verify Me is a Chrome extension developed by https://kevinmarks.com, and its main feature is "Add a button to the browser to check rel=me links point back".
Extension Screenshots
Download Verify Me Extension CRX File
Download Verify Me extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Verify Me |
ID | nnefkajddpfponfnmaflddipljfdlcjb |
Official URL | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
Description | Add a button to the browser to check rel=me links point back |
File Size | 24.16 KB |
Installation Count | 557 |
Current Version | 0.3.1 |
Last Updated | 2018-11-04 |
Publish Date | 2018-11-03 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://kevinmarks.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://github.com/indieweb/verify-me |
Supported Languages | 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" } } |