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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}