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.”。

扩展截图

screenshot
screenshot

下载OpenID扩展crx文件

下载OpenID扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
    }
}