Save to Readmoo

Save current page url to readmoo bookshelf.

What is Save to Readmoo?

Save to Readmoo is a Chrome extension developed by wildsky, and its main feature is "Save current page url to readmoo bookshelf.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Save to Readmoo Extension CRX File

Download Save to Readmoo extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Save to Readmoo Save to Readmoo
ID jdbnfgenpefhbpcfbfemlmjeknlbccci
Official URL https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci
Description Save current page url to readmoo bookshelf.
File Size 53.82 KB
Installation Count 64
Current Version 1.6.0
Last Updated 2019-11-02
Publish Date 2019-11-01
Rating 5.00/5 Total 2 Ratings
Developer wildsky
Email [email protected]
Payment Type free
Privacy Policy Page URL https://readmoo.com/terms/privacy
Supported Languages 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"
    ]
}