Random Quotes

Insert random quotes in your GMail emails.

什么是Random Quotes?

Random Quotes是由Wey开发的Chrome扩展程序,该扩展的主要功能是“Insert random quotes in your GMail emails.”。

扩展截图

screenshot

下载Random Quotes扩展crx文件

下载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 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"
            ]
        }
    ]
}