MUSE login

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

Was ist MUSE login?

MUSE login ist eine Chrome-Erweiterung, die von georgepowell10 entwickelt wurde, und ihr Hauptmerkmal ist "Automatically log in to shef.ac.uk without typing your details!".

Erweiterungsscreenshots

screenshot

MUSE login-Erweiterungs-CRX-Datei herunterladen

Laden Sie MUSE login-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name MUSE login MUSE login
ID lgemcjddblhggnfeigkgoefcedkhmdnl
Offizielle URL https://chrome.google.com/webstore/detail/muse-login/lgemcjddblhggnfeigkgoefcedkhmdnl
Beschreibung Automatically log in to shef.ac.uk without typing your details!
Dateigröße 211 KB
Installationsanzahl 31
Aktuelle Version 0.1
Letztes Update 2014-03-03
Veröffentlichungsdatum 2014-03-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler georgepowell10
Zahlungsart free
Unterstützte Sprachen 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
}