OpenID

The OpenID helper enables you to login to a website without a single click.

Cos'è OpenID?

OpenID è un'estensione di Chrome sviluppata da https://www.donationbasedhosting.org, e la sua funzione principale è "The OpenID helper enables you to login to a website without a single click.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione OpenID

Scarica i file di estensione OpenID in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome OpenID OpenID
ID klfijofcldioojikabdjillmmpnfljbk
URL Ufficiale https://chromewebstore.google.com/detail/openid/klfijofcldioojikabdjillmmpnfljbk
Descrizione The OpenID helper enables you to login to a website without a single click.
Dimensione del File 130 KB
Conteggio Installazioni 341
Versione Corrente 1.2.0
Ultimo Aggiornamento 2016-12-20
Data di Pubblicazione 2016-12-20
Sviluppatore https://www.donationbasedhosting.org
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/Tuurlijk/OpenID-helper-webextension/issues
Lingue Supportate 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"
    }
}