Random Quotes
Insert random quotes in your GMail emails.
Random Quotesคืออะไร?
Random Quotes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wey และคุณลักษณะหลักของมันคือ "Insert random quotes in your GMail emails."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Random Quotes
ดาวน์โหลดไฟล์ส่วนขยาย Random Quotes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extensions allows random quotes to be inserted in your Gmail's emails. INSTRUCTIONS: 1. Find a list of quotes you want to be randomly inserted in your Gmail emails. Separate each quote by a new line. 2. Insert the quotes into the extension's options (open the options by clicking on the extension icon in your browser). 3. Compose a new Gmail email and the quote should be automatically inserted in the message. Source code for this project is available on Github: https://github.com/raisen/Random-Quotes If you have any problem with this extension, please email me at thevegancoder at gmail dot com GET INVOLVED If you want to help this project, would you mind designing a cool app icon and some screenshots? Please email me at weyseal at gmail dot com Project source at: https://github.com/raisen/Random-Quotes Please use the github website to report issues with this extension as it's easier for me to reply, thanks!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Random Quotes |
ID | bhoalcabjhbiahfjlmhfcjkhfcdbfake |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/random-quotes/bhoalcabjhbiahfjlmhfcjkhfcdbfake |
คำอธิบาย | Insert random quotes in your GMail emails. |
ขนาดไฟล์ | 959 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 1.3.1 |
อัปเดตครั้งล่าสุด | 2016-05-11 |
วันที่เผยแพร่ | 2016-05-11 |
คะแนน | 2.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Wey |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Random Quotes", "manifest_version": 2, "version": "1.3.1", "description": "Insert random quotes in your GMail emails.", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/browser_icon.png", "default_popup": "options.html" }, "options_page": "options.html", "icons": { "128": "images\/quotes_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "bsearch.js" ] } ] } |