Verify Me
Add a button to the browser to check rel=me links point back
Was ist Verify Me?
Verify Me ist eine Chrome-Erweiterung, die von https://kevinmarks.com entwickelt wurde, und ihr Hauptmerkmal ist "Add a button to the browser to check rel=me links point back".
Erweiterungsscreenshots
Verify Me-Erweiterungs-CRX-Datei herunterladen
Laden Sie Verify Me-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nnefkajddpfponfnmaflddipljfdlcjb |
| Offizielle URL | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
| Beschreibung | Add a button to the browser to check rel=me links point back |
| Dateigröße | 24.16 KB |
| Installationsanzahl | 557 |
| Aktuelle Version | 0.3.1 |
| Letztes Update | 2018-11-04 |
| Veröffentlichungsdatum | 2018-11-03 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://kevinmarks.com |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://github.com/indieweb/verify-me |
| Unterstützte Sprachen | 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"
}
} | |