Celeb Replacer
Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.
Celeb Replacerคืออะไร?
Celeb Replacer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jamie Farrelly และคุณลักษณะหลักของมันคือ "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Celeb Replacer
ดาวน์โหลดไฟล์ส่วนขยาย Celeb Replacer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Replaces some well known celebrities such as Kim Jong Un to other celebrities (in this case Kim Kardashian). Can end up being quite funny now and again! At the moment there aren't too many celebrities covered but if you have any suggestions I'd be more than happy to add them in. Feel free to leave suggestions in the review section or tweet me @Jamie_Farrelly
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Celeb Replacer |
ID | ecefjchkchdojnmjiholejpbccjiklog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/celeb-replacer/ecefjchkchdojnmjiholejpbccjiklog |
คำอธิบาย | Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results. |
ขนาดไฟล์ | 35.25 KB |
จำนวนการติดตั้ง | 368 |
เวอร์ชันปัจจุบัน | 0.0.0.1 |
อัปเดตครั้งล่าสุด | 2015-01-05 |
วันที่เผยแพร่ | 2015-01-05 |
คะแนน | 2.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Jamie Farrelly |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Celeb Replacer", "version": "0.0.0.1", "description": "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.", "permissions": [ "storage" ], "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon19-on.png", "default_title": "Toggle Celeb Replacer" }, "content_security_policy": "default-src 'none'; script-src 'self'", "options_page": "options.html" } |