WordPress Dashboard Shortcut

One click to get to the WordPress dashboard from any WordPress.org website.

¿Qué es WordPress Dashboard Shortcut?

WordPress Dashboard Shortcut es una extensión de Chrome desarrollada por Matt S, y su función principal es "One click to get to the WordPress dashboard from any WordPress.org website.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión WordPress Dashboard Shortcut

Descarga archivos de extensión WordPress Dashboard Shortcut en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        One click shortcut to visit the dashboard of a WordPress site. Great for people who have to manage multiple WordPress websites. It will try to send you the page or post's editing screen if you try from an internal page/post.

NOT WORKING AFTER INSTALL? Just refresh the WordPress site. This is only for tabs open prior to installing the plugin, all future visits to any WordPress site or to other pages on your WordPress site will work beautifully with the extension.

v1.1 adds ability to specify the dashboard link directly in your code! For more details, right click the icon > options.                    

Información Básica de la Extensión

Nombre WordPress Dashboard Shortcut WordPress Dashboard Shortcut
ID onhnglhmledjhmniakhogfdpkmkinnfe
URL Oficial https://chromewebstore.google.com/detail/wordpress-dashboard-short/onhnglhmledjhmniakhogfdpkmkinnfe
Descripción One click to get to the WordPress dashboard from any WordPress.org website.
Tamaño del Archivo 76.31 KB
Cantidad de Instalaciones 1,117
Versión Actual 1.1.2.2
Última Actualización 2020-11-21
Fecha de Publicación 2017-10-26
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador Matt S
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordPress Dashboard Shortcut",
    "short_name": "WP Dash Shortcut",
    "description": "One click to get to the WordPress dashboard from any WordPress.org website.",
    "version": "1.1.2.2",
    "options_page": "update.htm",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "*:\/\/*.basecamp.com\/*"
            ],
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}