WordPress Dashboard Shortcut

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

Hvad er WordPress Dashboard Shortcut?

WordPress Dashboard Shortcut er en Chrome-udvidelse udviklet af Matt S, og dens hovedfunktion er "One click to get to the WordPress dashboard from any WordPress.org website.".

Udvidelsesskærmbilleder

screenshot

Download WordPress Dashboard Shortcut-udvidelses-CRX-fil

Download WordPress Dashboard Shortcut-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn WordPress Dashboard Shortcut WordPress Dashboard Shortcut
ID onhnglhmledjhmniakhogfdpkmkinnfe
Officiel URL https://chromewebstore.google.com/detail/wordpress-dashboard-short/onhnglhmledjhmniakhogfdpkmkinnfe
Beskrivelse One click to get to the WordPress dashboard from any WordPress.org website.
Filstørrelse 76.31 KB
Antal Installationer 1,117
Nuværende Version 1.1.2.2
Senest Opdateret 2020-11-21
Udgivelsesdato 2017-10-26
Bedømmelse 4.25/5 Samlet 4 Bedømmelser
Udvikler Matt S
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}