Read Only

We read your rejections to make you happier

Was ist Read Only?

Read Only ist eine Chrome-Erweiterung, die von shirinanlen entwickelt wurde, und ihr Hauptmerkmal ist "We read your rejections to make you happier".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Read Only-Erweiterungs-CRX-Datei herunterladen

Laden Sie Read Only-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Read Only Read Only
ID oojhhdobnhhjidcdbdjkfmfafdnddgij
Offizielle URL https://chromewebstore.google.com/detail/read-only/oojhhdobnhhjidcdbdjkfmfafdnddgij
Beschreibung We read your rejections to make you happier
Dateigröße 1.02 MB
Installationsanzahl 46
Aktuelle Version 0.0.1
Letztes Update 2019-06-25
Veröffentlichungsdatum 2019-06-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler shirinanlen
Zahlungsart free
Erweiterungswebsite https://github.com/ElllGeeEmm/Read-Only-the-real-thing/blob/master/README.md
Unterstützte Sprachen 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'"
}