Save to Readmoo
Save current page url to readmoo bookshelf.
什麼是Save to Readmoo?
Save to Readmoo是由wildsky開發的Chrome擴展程式,該擴展的主要功能是“Save current page url to readmoo bookshelf.”。
擴展截圖
下載Save to Readmoo擴展crx文件
下載Save to Readmoo擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        本套件提供工具給使用者,讓使用者可以一鍵將當前頁面新增進 Readmoo 書櫃,以便稍後觀看。                     擴展基本資訊
| 名稱 |   |  
| ID | jdbnfgenpefhbpcfbfemlmjeknlbccci | 
| 官方網址 | https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci | 
| 簡介 | Save current page url to readmoo bookshelf. | 
| 檔案大小 | 53.82 KB | 
| 安裝次數 | 64 | 
| 目前版本 | 1.6.0 | 
| 更新時間 | 2019-11-02 | 
| 上架時間 | 2019-11-01 | 
| 評分 | 5.00/5 共 2 次評分 | 
| 開發者 | wildsky | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 隱私政策頁面URL | https://readmoo.com/terms/privacy | 
| 支援的語言 | 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"
    ]
}  |  |