Read Only

We read your rejections to make you happier

Read Only란 무엇입니까?

Read Only은(는) shirinanlen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "We read your rejections to make you happier"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Read Only 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Read Only is a way to make the application process easier for candidates. We check your unread emails for rejection letters and use fun gifs and encouraging messages to brighten your day and embiggen your heart. 

Read Only - is a development that only reads your emails in browser to look for the right rejection patterns and never stores or sends any of your information out. Our goal is to shine over a dreadful process! :)

A chrome extension from ~shirin anlen and Robert Morrissey.
https://robertmorrissey.dev/ | https://shirin.works/                    

확장 프로그램 기본 정보

이름 Read Only Read Only
ID oojhhdobnhhjidcdbdjkfmfafdnddgij
공식 URL https://chromewebstore.google.com/detail/read-only/oojhhdobnhhjidcdbdjkfmfafdnddgij
설명 We read your rejections to make you happier
파일 크기 1.02 MB
설치 횟수 46
현재 버전 0.0.1
최근 업데이트 2019-06-25
출시 날짜 2019-06-25
평점 5.00/5 총 1 개의 평점
개발자 shirinanlen
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ElllGeeEmm/Read-Only-the-real-thing/blob/master/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "We read your rejections to make you happier",
    "version": "0.0.1",
    "name": "Read Only",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/*",
                "http:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}