MUSE login

Automatically log in to shef.ac.uk without typing your details!

Qu'est-ce que MUSE login ?

MUSE login est une extension Chrome développée par georgepowell10, et sa fonction principale est "Automatically log in to shef.ac.uk without typing your details!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension MUSE login

Téléchargez les fichiers d'extension MUSE login au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Fed up of typing your MUSE login every single freaking time? Why can't chrome remember your password or keep you signed in like every other website? Now it can! Introducing the MUSE login chrome extension. The extension automatically fills in and submits the login form whenever you arrive on the university login page, so you don't have to!

Fully open source and free forever at https://github.com/georgepowell/muse_login_chrome

Extension does not access the internet and stores your details safely on the local machine. Feel free to check out the source code if you have any doubts.                    

Informations de Base sur l'Extension

Nom MUSE login MUSE login
ID lgemcjddblhggnfeigkgoefcedkhmdnl
URL Officiel https://chrome.google.com/webstore/detail/muse-login/lgemcjddblhggnfeigkgoefcedkhmdnl
Description Automatically log in to shef.ac.uk without typing your details!
Taille du Fichier 211 KB
Nombre d'Installations 31
Version Actuelle 0.1
Dernière Mise à Jour 2014-03-03
Date de Publication 2014-03-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur georgepowell10
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MUSE login",
    "version": "0.1",
    "description": "Automatically log in to shef.ac.uk without typing your details!",
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/login.shef.ac.uk\/*",
                "https:\/\/login.shef.ac.uk\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-19.png",
        "default_title": "Muse Login!",
        "default_popup": "default_page.html"
    },
    "manifest_version": 2
}