Verify Me
Add a button to the browser to check rel=me links point back
Τι είναι το Verify Me;
Το Verify Me είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kevinmarks.com, και η κύρια λειτουργία του είναι "Add a button to the browser to check rel=me links point back".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Verify Me
Λήψη αρχείων επέκτασης Verify Me σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | nnefkajddpfponfnmaflddipljfdlcjb |
| Επίσημο URL | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
| Περιγραφή | Add a button to the browser to check rel=me links point back |
| Μέγεθος Αρχείου | 24.16 KB |
| Αριθμός Εγκαταστάσεων | 557 |
| Τρέχουσα Έκδοση | 0.3.1 |
| Τελευταία Ενημέρωση | 2018-11-04 |
| Ημερομηνία Δημοσίευσης | 2018-11-03 |
| Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
| Προγραμματιστής | https://kevinmarks.com |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/indieweb/verify-me |
| Υποστηριζόμενες Γλώσσες | 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"
}
} | |