Save to Readmoo

Save current page url to readmoo bookshelf.

Apa itu Save to Readmoo?

Save to Readmoo adalah ekstensi Chrome yang dikembangkan oleh wildsky, dan fitur utamanya adalah "Save current page url to readmoo bookshelf.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Save to Readmoo

Unduh file ekstensi Save to Readmoo dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        本套件提供工具給使用者,讓使用者可以一鍵將當前頁面新增進 Readmoo 書櫃,以便稍後觀看。                    

Informasi Dasar Ekstensi

Nama Save to Readmoo Save to Readmoo
ID jdbnfgenpefhbpcfbfemlmjeknlbccci
URL Resmi https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci
Deskripsi Save current page url to readmoo bookshelf.
Ukuran File 53.82 KB
Jumlah Instalasi 64
Versi Saat Ini 1.6.0
Terakhir Diperbarui 2019-11-02
Tanggal Publikasi 2019-11-01
Penilaian 5.00/5 Total 2 Penilaian
Pengembang wildsky
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://readmoo.com/terms/privacy
Bahasa yang Didukung zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "55.0"
        }
    },
    "name": "Save to Readmoo",
    "version": "1.6.0",
    "description": "Save current page url to readmoo bookshelf.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/member.readmoo.com\/*",
                "https:\/\/read.readmoo.com\/*"
            ],
            "css": [
                "notification.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/member.readmoo.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "login-hint.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/read.readmoo.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "save-token.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Save to Readmoo"
    },
    "icons": {
        "48": "icon-48.png",
        "96": "icon-96.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/api.readmoo.com\/store\/v3"
    ]
}