Google Drive Background Color Changer
This extension will change the background color on documents in Google Drive
Google Drive Background Color Changerคืออะไร?
Google Drive Background Color Changer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zacharyboyd และคุณลักษณะหลักของมันคือ "This extension will change the background color on documents in Google Drive"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Drive Background Color Changer
ดาวน์โหลดไฟล์ส่วนขยาย Google Drive Background Color Changer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Chrome Extension will change the background color on documents in Google Drive.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Drive Background Color Changer |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo |
คำอธิบาย | This extension will change the background color on documents in Google Drive |
ขนาดไฟล์ | 122 KB |
จำนวนการติดตั้ง | 1,653 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2017-05-15 |
วันที่เผยแพร่ | 2017-05-15 |
คะแนน | 5.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | zacharyboyd |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Drive Background Color Changer", "version": "0.1", "browser_action": { "default_icon": "icons\/icon16.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/docs.google.com\/*", "http:\/\/docs.google.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/*" ], "js": [ "drive-color-changer.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "description": "This extension will change the background color on documents in Google Drive" } |