WordPress Dashboard Shortcut

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

WordPress Dashboard Shortcut là gì?

WordPress Dashboard Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Matt S, và tính năng chính của nó là "One click to get to the WordPress dashboard from any WordPress.org website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WordPress Dashboard Shortcut

Tải xuống các tệp mở rộng WordPress Dashboard Shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WordPress Dashboard Shortcut WordPress Dashboard Shortcut
ID onhnglhmledjhmniakhogfdpkmkinnfe
URL Chính Thức https://chromewebstore.google.com/detail/wordpress-dashboard-short/onhnglhmledjhmniakhogfdpkmkinnfe
Mô tả One click to get to the WordPress dashboard from any WordPress.org website.
Kích Thước Tệp 76.31 KB
Số Lần Cài Đặt 1,117
Phiên Bản Hiện Tại 1.1.2.2
Cập Nhật Lần Cuối 2020-11-21
Ngày Phát Hành 2017-10-26
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Matt S
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}