WordPress Dashboard Shortcut

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

WordPress Dashboard Shortcut란 무엇입니까?

WordPress Dashboard Shortcut은(는) Matt S에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One click to get to the WordPress dashboard from any WordPress.org website."입니다.

확장 프로그램 스크린샷

screenshot

WordPress Dashboard Shortcut 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}