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 書櫃,以便稍後觀看。
扩展基本信息
名称 | Save to Readmoo |
ID | jdbnfgenpefhbpcfbfemlmjeknlbccci |
官方URL | 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" ] } |