Verify Me
Add a button to the browser to check rel=me links point back
Verify Me란 무엇입니까?
Verify Me은(는) https://kevinmarks.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a button to the browser to check rel=me links point back"입니다.
확장 프로그램 스크린샷
Verify Me 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | Verify Me |
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" } } |