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文件

下载Read Only扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}