WordPress Checker
Checks WordPress blogs for unmoderated and spam comments.
WordPress Checkerคืออะไร?
WordPress Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric Williams และคุณลักษณะหลักของมันคือ "Checks WordPress blogs for unmoderated and spam comments."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WordPress Checker
ดาวน์โหลดไฟล์ส่วนขยาย 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" } |