Marvel Unlimited Enhanced

Improvements to the Marvel Unlimited desktop experience.

Τι είναι το Marvel Unlimited Enhanced;

Το Marvel Unlimited Enhanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Clan, και η κύρια λειτουργία του είναι "Improvements to the Marvel Unlimited desktop experience.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Marvel Unlimited Enhanced

Λήψη αρχείων επέκτασης Marvel Unlimited Enhanced σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This Chrome extension adds some improvements to the Marvel Unlimited desktop experience. All the actions in this extension sync with any other device with your Marvel account. Currently, the features available are:
• Currently reading section in the home tab with a progress bar
• Badge next to every comic indicating whether they have been read or not
• Mark as read/unread button
• Sync reading between all devices

Disclaimer. Please note that Marvel Unlimited Enhanced is currently in beta and is still undergoing final testing before its official release. Therefore, any bug or inconvenience will not be our responsibility. Use at your own risk.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Marvel Unlimited Enhanced Marvel Unlimited Enhanced
ID lojildlejeoemiiaolmkmfpeknonladk
Επίσημο URL https://chromewebstore.google.com/detail/marvel-unlimited-enhanced/lojildlejeoemiiaolmkmfpeknonladk
Περιγραφή Improvements to the Marvel Unlimited desktop experience.
Μέγεθος Αρχείου 2.4 MB
Αριθμός Εγκαταστάσεων 699
Τρέχουσα Έκδοση 0.1.0
Τελευταία Ενημέρωση 2021-08-31
Ημερομηνία Δημοσίευσης 2021-08-31
Αξιολόγηση 3.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Clan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Marvel Unlimited Enhanced",
    "description": "Improvements to the Marvel Unlimited desktop experience.",
    "version": "0.1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/medusa.marvel.com\/*",
        "https:\/\/www.marvel.com\/",
        "https:\/\/read-api.marvel.com\/issue\/v2\/digitalcomics\/*",
        "https:\/\/read.marvel.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.marvel.com\/comics\/unlimited\/home*"
            ],
            "run_at": "document_start",
            "js": [
                "contentMarvelUnlimited.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.marvel.com\/comics\/issue\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentIssues.js"
            ],
            "css": [
                "contentIssues.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.marvel.com\/comics\/*"
            ],
            "run_at": "document_start",
            "js": [
                "badge.js"
            ],
            "css": [
                "badge.css"
            ]
        },
        {
            "matches": [
                "https:\/\/read.marvel.com\/*"
            ],
            "js": [
                "read.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.marvel.com\/comics\/issue\/*"
        ]
    },
    "web_accessible_resources": [
        "markAsRead.js",
        "read.png"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "32": "icons\/icon32.png",
        "128": "icons\/icon128.png"
    }
}