The Old Reader Dark

Dark theme for The Old Reader.

What is The Old Reader Dark?

The Old Reader Dark is a Chrome extension developed by laedit, and its main feature is "Dark theme for The Old Reader.".

Extension Screenshots

screenshot

Download The Old Reader Dark Extension CRX File

Download The Old Reader Dark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A dark theme for The Old Reader.                    

Extension Basic Information

Name The Old Reader Dark The Old Reader Dark
ID fpjjphhhciifpfhapopmdfppmhkepmnl
Official URL https://chromewebstore.google.com/detail/the-old-reader-dark/fpjjphhhciifpfhapopmdfppmhkepmnl
Description Dark theme for The Old Reader.
File Size 17.6 KB
Installation Count 20
Current Version 0.4
Last Updated 2019-10-05
Publish Date 2019-10-04
Rating 5.00/5 Total 1 Ratings
Developer laedit
Payment Type free
Extension Website https://github.com/laedit/the-old-reader-dark
Help Page URL https://github.com/laedit/the-old-reader-dark/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Old Reader Dark",
    "short_name": "the-old-reader-dark",
    "version": "0.4",
    "description": "Dark theme for The Old Reader.",
    "homepage_url": "https:\/\/github.com\/laedit\/the-old-reader-dark",
    "permissions": [
        "*:\/\/theoldreader.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/theoldreader.com\/*"
            ],
            "css": [
                "content_scripts\/dark-theme.css"
            ],
            "js": [
                "content_scripts\/inject-css.js"
            ]
        }
    ],
    "icons": {
        "64": "icons\/icon.png",
        "128": "icons\/icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}