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.」です。
拡張機能のスクリーンショット
WordPress Checker拡張機能のCRXファイルをダウンロード
WordPress Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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" } |