Verify Me
Add a button to the browser to check rel=me links point back
Vad är Verify Me?
Verify Me är en Chrome-tillägg utvecklad av https://kevinmarks.com, och dess huvudfunktion är "Add a button to the browser to check rel=me links point back".
Tilläggsskärmbilder
Ladda ner Verify Me-förlängningens CRX-fil
Ladda ner Verify Me-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | nnefkajddpfponfnmaflddipljfdlcjb |
| Officiell webbadress | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
| Beskrivning | Add a button to the browser to check rel=me links point back |
| Filstorlek | 24.16 KB |
| Antal Installationer | 557 |
| Aktuell Version | 0.3.1 |
| Senast Uppdaterad | 2018-11-04 |
| Publiceringsdatum | 2018-11-03 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | https://kevinmarks.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://github.com/indieweb/verify-me |
| Stödda Språk | 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"
}
} | |