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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}