WordPress Checker

Checks WordPress blogs for unmoderated and spam comments.

WordPress Checker란 무엇입니까?

WordPress Checker은(는) Eric Williams에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks WordPress blogs for unmoderated and spam comments."입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension checks one or more WordPress blogs for unapproved and spam comments.

Currently in beta.

This extension is not affiliated with or endorsed by WordPress or Automattic.

-- Changelog --
0.9.4.1: Manifest version 2, improve handling of WordPress admin pages to avoid some polling.
0.9.4.0: Internal improvements, code cleanup.                    

확장 프로그램 기본 정보

이름 WordPress Checker WordPress Checker
ID pgppalbjoggajlfbnpgbnkidnjflnlfc
공식 URL https://chromewebstore.google.com/detail/wordpress-checker/pgppalbjoggajlfbnpgbnkidnjflnlfc
설명 Checks WordPress blogs for unmoderated and spam comments.
파일 크기 34.59 KB
설치 횟수 300
현재 버전 0.9.4.1
최근 업데이트 2013-03-24
출시 날짜 2013-03-23
평점 4.14/5 총 14 개의 평점
개발자 Eric Williams
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "version": "0.9.4.1",
    "description": "__MSG_ext_desc__",
    "minimum_chrome_version": "18",
    "icons": {
        "19": "icon-19.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png",
        "500": "icon-500.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "library.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-19.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "default-src 'self'; connect-src http: https:",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*wp-admin\/*",
                "https:\/\/*\/*wp-admin\/*"
            ],
            "js": [
                "wp-admin.js"
            ]
        }
    ],
    "options_page": "options.html"
}