OpenID
The OpenID helper enables you to login to a website without a single click.
OpenID란 무엇입니까?
OpenID은(는) https://www.donationbasedhosting.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The OpenID helper enables you to login to a website without a single click."입니다.
확장 프로그램 스크린샷
OpenID 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Configure your own OpenID url and automatically login to any service that supports OpenID. You can specify a list of form element id's. If any of the id's is found on a page, the extension will enable an addressbar button. Click the button to login. You can also enable auto-login. This will automatically login using the provided URL if one of the id's is found on a page.
확장 프로그램 기본 정보
이름 | OpenID |
ID | klfijofcldioojikabdjillmmpnfljbk |
공식 URL | https://chromewebstore.google.com/detail/openid/klfijofcldioojikabdjillmmpnfljbk |
설명 | The OpenID helper enables you to login to a website without a single click. |
파일 크기 | 130 KB |
설치 횟수 | 341 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2016-12-20 |
출시 날짜 | 2016-12-20 |
개발자 | https://www.donationbasedhosting.org |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/Tuurlijk/OpenID-helper-webextension/issues |
지원되는 언어 | en,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "version": "1.2.0", "manifest_version": 2, "minimum_chrome_version": "18", "description": "__MSG_extensionDescription__", "homepage_url": "http:\/\/www.donationbasedhosting.org\/", "default_locale": "en", "permissions": [ "tabs", "*:\/\/*\/*" ], "background": { "scripts": [ "Resources\/JavaScript\/Background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "Resources\/JavaScript\/Content.js" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "16": "Resources\/Icons\/Icon16.png", "48": "Resources\/Icons\/Icon48.png", "128": "Resources\/Icons\/Icon128.png" }, "options_page": "Resources\/HTML\/Options.html", "page_action": { "default_icon": { "38": "Resources\/Icons\/OpenIdDisabled38.png", "19": "Resources\/Icons\/OpenIdDisabled19.png" }, "default_title": "OpenId disabled" } } |