WordBird
Find and Replace Words on Websites.
WordBirdคืออะไร?
WordBird เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thalida และคุณลักษณะหลักของมันคือ "Find and Replace Words on Websites."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WordBird
ดาวน์โหลดไฟล์ส่วนขยาย WordBird ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wanted to replace all instances of "word" with "bird"? Well, now you can! As well as any and all other word/phrase replacements your mind can dream of.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | phjelaokjghhjogbfmkljhghhnbidfgk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk |
คำอธิบาย | Find and Replace Words on Websites. |
ขนาดไฟล์ | 978 KB |
จำนวนการติดตั้ง | 13 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2017-02-17 |
วันที่เผยแพร่ | 2017-02-17 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | thalida |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/thalida/WordBird |
URL หน้าช่วยเหลือ | https://github.com/thalida/WordBird/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WordBird", "description": "Find and Replace Words on Websites.", "version": "1.0.5", "author": "thalida", "homepage_url": "https:\/\/github.com\/thalida\/WordBird", "permissions": [ "storage" ], "icons": { "19": "icons\/icon-on.19.png", "48": "icons\/icon-on.48.png", "128": "icons\/icon-on.128.png" }, "browser_action": { "default_icon": { "19": "icons\/icon-on.19.png", "48": "icons\/icon-on.48.png", "128": "icons\/icon-on.128.png" }, "default_popup": "public\/dist\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_page": "public\/dist\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |