Novel Updates Tracker

A chrome extension for the site https://www.novelupdates.com/

Novel Updates Tracker क्या है?

Novel Updates Tracker redris96 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension for the site https://www.novelupdates.com/"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Novel Updates Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is an extension for novel updates website. It enables you to do the following things:
 * Search for novels directly from the extension.
 * Subscribe to novels.
 * Gives updates when new chapters come out for subscribed novels.
 * Open new chapter pages directly from the extension.
 * Manage subscriptions in the options page. 
 * Auto import novels in reading list (Just open reading list page and click on import button which pops up)                    

एक्सटेंशन की मूल जानकारी

नाम Novel Updates Tracker Novel Updates Tracker
ID igmmmhdfkoijidkeddoeafaldcbnmjnn
आधिकारिक URL https://chromewebstore.google.com/detail/novel-updates-tracker/igmmmhdfkoijidkeddoeafaldcbnmjnn
विवरण A chrome extension for the site https://www.novelupdates.com/
फ़ाइल का आकार 199 KB
स्थापना संख्या 78
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2018-12-26
प्रकाशन तिथि 2018-12-26
रेटिंग 3.80/5 कुल 5 रेटिंग्स
डेवलपर redris96
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Novel Updates Tracker",
    "version": "1.1.0",
    "description": "A chrome extension for the site https:\/\/www.novelupdates.com\/",
    "minimum_chrome_version": "23",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "alarms"
    ],
    "options_page": "settings.html",
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/NU.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.novelupdates.com\/series\/*",
                "https:\/\/*.novelupdates.com\/series\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.novelupdates.com\/reading-list\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content_reading.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "images\/NU.png"
    },
    "manifest_version": 2
}