Wikipedia Reading Lists

Save Wikipedia articles to read on Wikipedia’s iOS and Android apps

Wikipedia Reading Lists là gì?

Wikipedia Reading Lists là một tiện ích mở rộng Chrome được phát triển bởi Wikimedia Foundation, và tính năng chính của nó là "Save Wikipedia articles to read on Wikipedia’s iOS and Android apps".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wikipedia Reading Lists

Tải xuống các tệp mở rộng Wikipedia Reading Lists dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Wikipedia Reading Lists is for Wikipedia Android or iOS users who would like to save articles into their reading lists. With a single tap, you can save an article into your default reading list, where it will be available for you to read through either of the Wikipedia apps.

To use this browser extension, you will need to have reading list syncing enabled for your account in the iOS or Android Wikipedia app.

Privacy: https://wikimediafoundation.org/wiki/Wikipedia_Reading_Lists_Browser_Extension_Privacy_Policy                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wikipedia Reading Lists Wikipedia Reading Lists
ID nngeaaogaldpfiedmmpicdnoddglbkmi
URL Chính Thức https://chromewebstore.google.com/detail/wikipedia-reading-lists/nngeaaogaldpfiedmmpicdnoddglbkmi
Mô tả Save Wikipedia articles to read on Wikipedia’s iOS and Android apps
Kích Thước Tệp 26.91 KB
Số Lần Cài Đặt 3,287
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-10-03
Ngày Phát Hành 2018-10-03
Đánh Giá 2.62/5 Tổng số 29 Đánh Giá
Nhà Phát Triển Wikimedia Foundation
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.mediawiki.org/wiki/Wikimedia_Apps/Reading_list_browser_extension
URL Trang Chính Sách Bảo Mật https://wikimediafoundation.org/wiki/Privacy_policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Reading Lists",
    "description": "Save Wikipedia articles to read on Wikipedia\u2019s iOS and Android apps",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/*.wikipedia.org\/",
        "https:\/\/*.wikivoyage.org\/"
    ],
    "background": {
        "scripts": [
            "dist\/browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "dist\/browser-polyfill.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/*.wikipedia.org\/*",
                "https:\/\/*.wikivoyage.org\/*"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon_Addtolist_48x48.png",
            "32": "icon_Addtolist_48x48.png",
            "48": "icon_Addtolist_48x48.png",
            "128": "icon_Addtolist_128x128.png"
        }
    },
    "icons": {
        "16": "icon_Addtolist_48x48.png",
        "32": "icon_Addtolist_48x48.png",
        "48": "icon_Addtolist_48x48.png",
        "128": "icon_Addtolist_128x128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "MacCtrl+Shift+A"
            },
            "description": "Add the current page to the default reading list"
        }
    }
}