Reader Extension For Chrome

Simple extension to that reminds you to read what you saved.

Qu'est-ce que Reader Extension For Chrome ?

Reader Extension For Chrome est une extension Chrome développée par https://rukshn.github.io, et sa fonction principale est "Simple extension to that reminds you to read what you saved.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reader Extension For Chrome

Téléchargez les fichiers d'extension Reader Extension For Chrome au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        A simple chrome extension that makes you read what you save.

**Update : New in 1.7.2**

* Full text search for your web history
* New UI
* Notification bar
* SVG bug fix

Do save items to read later and forget them later? Reader extension will show your saved items every time you open a new tab.
Reader is a simple extension helps you to bookmark and actually read what you save.
  
* Everything you save is shown in every New Tab
* Easy to add and remove items
* Syncing and offline mode coming soon                    

Informations de Base sur l'Extension

Nom Reader Extension For Chrome Reader Extension For Chrome
ID emeacaomhbajejnndadbkbmfhpljjeik
URL Officiel https://chromewebstore.google.com/detail/reader-extension-for-chro/emeacaomhbajejnndadbkbmfhpljjeik
Description Simple extension to that reminds you to read what you saved.
Taille du Fichier 606 KB
Nombre d'Installations 78
Version Actuelle 1.7.7
Dernière Mise à Jour 2018-05-28
Date de Publication 2018-05-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://rukshn.github.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://rukshn.github.io
URL de la Page d'Aide https://twitter.com/justruky
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reader Extension For Chrome",
    "short_name": "Reader",
    "description": "Simple extension to that reminds you to read what you saved.",
    "version": "1.7.7",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus",
        "tabs",
        "https:\/\/fonts.googleapis.com\/*",
        "https:\/\/cdnjs.cloudflare.com\/*",
        "https:\/\/refresh.fun\/api\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "css": [
                "main.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        },
        {
            "js": [
                "cs.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "home.html"
    },
    "icons": {
        "32": "icon32.png",
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "manifest_version": 2
}