Read Later

This extension save pages when you want to read later.

Read Later क्या है?

Read Later FreMaNgo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension save pages when you want to read later."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        A chrome extension to saving links for later reading.

## The icon is provided by Zeeman ##
## website: https://dribbble.com/Zeeman ##

******** the last update ********
[UPDATE v0.3.8 2018/10/09]
- update code struct.
- faster

******** read me **************
[README]
- save webpage address when you want to read later.
- support google extensions sync. *you must login to Google account
- support search post.
- support clear all post.
- support export.

****** Update History *********
[UPDATE v0.3.7 2018/08/09]
- [Add] export to standard Netscape Bookmark File Format
- [update] smaller

[UPDATE v0.3.0 2018/02/25]
*** when you reload this extension, please change your read-later folder name to __read_later__ ***

- Add more options in the settings panel
- Fixed BUGs.

[UPDATE v0.1.0 2018/02/09]
*** Use bookmarks to replace chrome storage ***
  when you use this extensions, it will create a new bookmark folder '__read_later__' under other bookmarks.
  So, you can add any number of read-later posts without the limitations of chrome extensions.
  Happy to use :)                    

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

नाम Read Later Read Later
ID fljjbnapfhadigagkokchheegldfmghf
आधिकारिक URL https://chrome.google.com/webstore/detail/read-later/fljjbnapfhadigagkokchheegldfmghf
विवरण This extension save pages when you want to read later.
फ़ाइल का आकार 89.8 KB
स्थापना संख्या 276
वर्तमान संस्करण 0.3.8
अंतिम अपडेट 2018-10-08
प्रकाशन तिथि 2018-10-08
रेटिंग 3.83/5 कुल 6 रेटिंग्स
डेवलपर FreMaNgo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/itcat99/read-later
सहायता पृष्ठ URL https://github.com/itcat99/read-later/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Read Later",
    "short_name": "read later",
    "description": "This extension save pages when you want to read later.",
    "version": "0.3.8",
    "browser_action": {
        "default_icon": ".\/icons\/icon_48.png",
        "default_popup": "popup.html",
        "default_title": "read later"
    },
    "background": {
        "scripts": [
            ".\/assets\/vendor.js",
            ".\/assets\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications",
        "storage",
        "bookmarks"
    ],
    "icons": {
        "16": ".\/icons\/icon_16.png",
        "48": ".\/icons\/icon_48.png",
        "128": ".\/icons\/icon_128.png"
    },
    "commands": {
        "ADD_POST": {
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "MacCtrl+Shift+M"
            },
            "description": "add a new read later post."
        }
    }
}