WordPress Dashboard Shortcut

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

Vad är WordPress Dashboard Shortcut?

WordPress Dashboard Shortcut är en Chrome-tillägg utvecklad av Matt S, och dess huvudfunktion är "One click to get to the WordPress dashboard from any WordPress.org website.".

Tilläggsskärmbilder

screenshot

Ladda ner WordPress Dashboard Shortcut-förlängningens CRX-fil

Ladda ner WordPress Dashboard Shortcut-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn WordPress Dashboard Shortcut WordPress Dashboard Shortcut
ID onhnglhmledjhmniakhogfdpkmkinnfe
Officiell webbadress https://chromewebstore.google.com/detail/wordpress-dashboard-short/onhnglhmledjhmniakhogfdpkmkinnfe
Beskrivning One click to get to the WordPress dashboard from any WordPress.org website.
Filstorlek 76.31 KB
Antal Installationer 1,117
Aktuell Version 1.1.2.2
Senast Uppdaterad 2020-11-21
Publiceringsdatum 2017-10-26
Betyg 4.25/5 Totalt 4 Betyg
Utvecklare Matt S
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}