Save to Readmoo
Save current page url to readmoo bookshelf.
Cos'è Save to Readmoo?
Save to Readmoo è un'estensione di Chrome sviluppata da wildsky, e la sua funzione principale è "Save current page url to readmoo bookshelf.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Save to Readmoo
Scarica i file di estensione Save to Readmoo in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        本套件提供工具給使用者,讓使用者可以一鍵將當前頁面新增進 Readmoo 書櫃,以便稍後觀看。                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | jdbnfgenpefhbpcfbfemlmjeknlbccci | 
| URL Ufficiale | https://chromewebstore.google.com/detail/save-to-readmoo/jdbnfgenpefhbpcfbfemlmjeknlbccci | 
| Descrizione | Save current page url to readmoo bookshelf. | 
| Dimensione del File | 53.82 KB | 
| Conteggio Installazioni | 64 | 
| Versione Corrente | 1.6.0 | 
| Ultimo Aggiornamento | 2019-11-02 | 
| Data di Pubblicazione | 2019-11-01 | 
| Valutazione | 5.00/5 Totale 2 Valutazioni | 
| Sviluppatore | wildsky | 
| [email protected] | |
| Tipo di Pagamento | free | 
| URL della Pagina della Politica sulla Privacy | https://readmoo.com/terms/privacy | 
| Lingue Supportate | 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"
    ]
}  |  |