Read It Later New Tab

Save articles and pages to a read later list on your new tab.

Read It Later New Tab क्या है?

Read It Later New Tab VPP Technologies, Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save articles and pages to a read later list on your new tab."।

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

screenshot

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

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

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

                        Read It Later allows you to build your reading list as your browse the web. This extension replaces your new tab page with a clean page that features a web search powered by Bing and your reading list. 

As you browse the web, just click the button to add any post or article to your personal reading list and save your favorite content for later. 

Privacy Policy: https://readlatertab.com/privacy
Terms of Service: https://readlatertab.com/terms-of-service/
Contact Us:  https://readlatertab.com/contact/
How to Uninstall: https://readlatertab.com/uninstall/

Permissions requested:
Active tab: The extension requests the title and url of the active tab to save to the reading list. 

Local storage: The extension stores in local storage the url and title of the article for display on the user's new tab.                    

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

नाम Read It Later New Tab Read It Later New Tab
ID kmlehibbdkdcbmkaccmhephiklbenaca
आधिकारिक URL https://chromewebstore.google.com/detail/read-it-later-new-tab/kmlehibbdkdcbmkaccmhephiklbenaca
विवरण Save articles and pages to a read later list on your new tab.
फ़ाइल का आकार 285 KB
स्थापना संख्या 10,548
वर्तमान संस्करण 0.1.5
अंतिम अपडेट 2022-12-02
प्रकाशन तिथि 2022-09-08
डेवलपर VPP Technologies, Inc.
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://readlatertab.com/
सहायता पृष्ठ URL https://readlatertab.com/contact/
गोपनीयता नीति पृष्ठ URL https://onthisdaytab.com/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read It Later New Tab",
    "version": "0.1.5",
    "manifest_version": 3,
    "description": "Save articles and pages to a read later list on your new tab.",
    "action": {
        "default_icon": "images\/icon32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/"
            ],
            "js": [
                "core.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "commands": {
        "add-url": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Add current page to ReadLater"
        }
    }
}