Reading List
This extension saves a list of links to pages to read later.
Reading List क्या है?
Reading List alexpdraper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension saves a list of links to pages to read later."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reading List एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This reading list extension allows you to save pages in a list to get back to later. It’s super slick and easy to use, and it helps keep your tab count down. How to use it? 1. Go to a page you want to save for later 2. Click the reading list icon on the top right of your browser Chrome Reading List icon 3. Click the + button 4. When you want to read a page you saved, open up the extension and click the reading item you want to read (control + click or command ⌘/windows key ⊞ + click to open the page in a new tab) 5. Done with a page? Click the × next to said page in your reading list, and it will magically vanish.
एक्सटेंशन की मूल जानकारी
नाम | Reading List |
ID | lloccabjgblebdmncjndmiibianflabo |
आधिकारिक URL | https://chromewebstore.google.com/detail/reading-list/lloccabjgblebdmncjndmiibianflabo |
विवरण | This extension saves a list of links to pages to read later. |
फ़ाइल का आकार | 39.54 KB |
स्थापना संख्या | 46,957 |
वर्तमान संस्करण | 2.4.4 |
अंतिम अपडेट | 2018-04-14 |
प्रकाशन तिथि | 2018-04-14 |
रेटिंग | 4.75/5 कुल 724 रेटिंग्स |
डेवलपर | alexpdraper |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/alexpdraper/reading-list |
समर्थित भाषाएँ | de,en,fr,es,it,bg,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" } }, "background": { "scripts": [ "background.bundle.js" ] }, "permissions": [ "tabs", "contextMenus", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "minimum_chrome_version": "20", "options_page": "options.html", "version": "2.4.4" } |