Save to Readmoo
Save current page url to readmoo bookshelf.
Was ist Save to Readmoo?
Save to Readmoo ist eine Chrome-Erweiterung, die von wildsky entwickelt wurde, und ihr Hauptmerkmal ist "Save current page url to readmoo bookshelf.".
Erweiterungsscreenshots
Save to Readmoo-Erweiterungs-CRX-Datei herunterladen
Laden Sie Save to Readmoo-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
本套件提供工具給使用者,讓使用者可以一鍵將當前頁面新增進 Readmoo 書櫃,以便稍後觀看。
Grundlegende Informationen zur Erweiterung
Name | Save to Readmoo |
ID | jdbnfgenpefhbpcfbfemlmjeknlbccci |
Offizielle URL | https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci |
Beschreibung | Save current page url to readmoo bookshelf. |
Dateigröße | 53.82 KB |
Installationsanzahl | 64 |
Aktuelle Version | 1.6.0 |
Letztes Update | 2019-11-02 |
Veröffentlichungsdatum | 2019-11-01 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | wildsky |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://readmoo.com/terms/privacy |
Unterstützte Sprachen | 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" ] } |