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. 擴展基本資訊
| 名稱 | |
| ID | pgppalbjoggajlfbnpgbnkidnjflnlfc |
| 官方網址 | 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"
} | |