Random Quotes
Insert random quotes in your GMail emails.
Random Quotes क्या है?
Random Quotes Wey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Insert random quotes in your GMail emails."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Random Quotes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |