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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان صفحة سياسة الخصوصية | 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"
}
} | |