Initial
Easily include Google on the homepage with relevant results in your searches.
Initialคืออะไร?
Initial เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://googloc.com และคุณลักษณะหลักของมันคือ "Easily include Google on the homepage with relevant results in your searches."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Initial
ดาวน์โหลดไฟล์ส่วนขยาย Initial ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
With our extension you can easily include the Google search field as the home page of your internet browser.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Initial |
ID | indkpcjdonlhakljicagikchdooafijm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/initial/indkpcjdonlhakljicagikchdooafijm |
คำอธิบาย | Easily include Google on the homepage with relevant results in your searches. |
ขนาดไฟล์ | 611 KB |
จำนวนการติดตั้ง | 2,826 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2024-01-15 |
วันที่เผยแพร่ | 2022-08-05 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://googloc.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.googloc.com/politicas |
ภาษาที่รองรับ | pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Initial", "description": "Easily include Google on the homepage with relevant results in your searches.", "version": "2.0", "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/search?*", "https:\/\/www.google.com.br\/search?*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "chrome_settings_overrides": { "startup_pages": [ "https:\/\/googloc.com\/google\/" ] }, "icons": { "16": "imagens\/icon_16px.png", "32": "imagens\/icon_32px.png", "96": "imagens\/icon_96px.png", "48": "imagens\/icon_48px.png", "128": "imagens\/icon_128px.png" } } |