Save to Readmoo
Save current page url to readmoo bookshelf.
Qu'est-ce que Save to Readmoo ?
Save to Readmoo est une extension Chrome développée par wildsky, et sa fonction principale est "Save current page url to readmoo bookshelf.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Save to Readmoo
Téléchargez les fichiers d'extension Save to Readmoo au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
本套件提供工具給使用者,讓使用者可以一鍵將當前頁面新增進 Readmoo 書櫃,以便稍後觀看。
Informations de Base sur l'Extension
Nom | Save to Readmoo |
ID | jdbnfgenpefhbpcfbfemlmjeknlbccci |
URL Officiel | https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci |
Description | Save current page url to readmoo bookshelf. |
Taille du Fichier | 53.82 KB |
Nombre d'Installations | 64 |
Version Actuelle | 1.6.0 |
Dernière Mise à Jour | 2019-11-02 |
Date de Publication | 2019-11-01 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | wildsky |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://readmoo.com/terms/privacy |
Langues Prises en Charge | 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" ] } |