WordPress Dashboard Shortcut

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

WordPress Dashboard Shortcut क्या है?

WordPress Dashboard Shortcut Matt S द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "One click to get to the WordPress dashboard from any WordPress.org website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WordPress Dashboard Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम WordPress Dashboard Shortcut WordPress Dashboard Shortcut
ID onhnglhmledjhmniakhogfdpkmkinnfe
आधिकारिक URL https://chromewebstore.google.com/detail/wordpress-dashboard-short/onhnglhmledjhmniakhogfdpkmkinnfe
विवरण One click to get to the WordPress dashboard from any WordPress.org website.
फ़ाइल का आकार 76.31 KB
स्थापना संख्या 1,117
वर्तमान संस्करण 1.1.2.2
अंतिम अपडेट 2020-11-21
प्रकाशन तिथि 2017-10-26
रेटिंग 4.25/5 कुल 4 रेटिंग्स
डेवलपर Matt S
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}