Novel Updates Tracker

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

什麼是Novel Updates Tracker?

Novel Updates Tracker是由redris96開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension for the site https://www.novelupdates.com/”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Novel Updates Tracker擴展crx文件

下載Novel Updates Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}