Reader Extension For Chrome

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

Reader Extension For Chrome क्या है?

Reader Extension For Chrome https://rukshn.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension to that reminds you to read what you saved."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reader Extension For Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Reader Extension For Chrome Reader Extension For Chrome
ID emeacaomhbajejnndadbkbmfhpljjeik
आधिकारिक URL https://chromewebstore.google.com/detail/reader-extension-for-chro/emeacaomhbajejnndadbkbmfhpljjeik
विवरण Simple extension to that reminds you to read what you saved.
फ़ाइल का आकार 606 KB
स्थापना संख्या 78
वर्तमान संस्करण 1.7.7
अंतिम अपडेट 2018-05-28
प्रकाशन तिथि 2018-05-27
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://rukshn.github.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://rukshn.github.io
सहायता पृष्ठ URL https://twitter.com/justruky
समर्थित भाषाएँ 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
}