Save to Readmoo
Save current page url to readmoo bookshelf.
Wat is Save to Readmoo?
Save to Readmoo is een Chrome-extensie ontwikkeld door wildsky, en de belangrijkste functie is "Save current page url to readmoo bookshelf.".
Extensie Screenshots
Download het CRX-bestand van de extensie Save to Readmoo
Download Save to Readmoo-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
本套件提供工具給使用者,讓使用者可以一鍵將當前頁面新增進 Readmoo 書櫃,以便稍後觀看。
Basisinformatie over de Extensie
Naam | Save to Readmoo |
ID | jdbnfgenpefhbpcfbfemlmjeknlbccci |
Officiële URL | https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci |
Beschrijving | Save current page url to readmoo bookshelf. |
Bestandsgrootte | 53.82 KB |
Aantal Installaties | 64 |
Huidige Versie | 1.6.0 |
Laatst Bijgewerkt | 2019-11-02 |
Publicatiedatum | 2019-11-01 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | wildsky |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://readmoo.com/terms/privacy |
Ondersteunde Talen | 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" ] } |