FreeKiss

Enhance your KissManga experience.

FreeKiss란 무엇입니까?

FreeKiss은(는) GDFProjects에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance your KissManga experience."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

FreeKiss 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        FreeKiss is a simple extension aiming to improve the navigation and usage of KissManga.

The extension is open source and the code is available on Github https://github.com/Gerardufoin/FreeKiss.


16/01/2019: KissManga just added a new folder system to sort your bookmarks. FreeKiss is not yet updated to work alongside it. I don't recommend using both the sorting system of FreeKiss and the folder system of KissManga. I'll figure a way to merge it with FreeKiss when I'll have some time.
If you have some suggestions about that, feel free to send me an email.

== Features ==

● Automatic min/max chapter images resize. No more chapter for giants/ants (Do note that any resize will have an effect on the image quality, I am no wizard).
● Extension popup to quickly change the images resize settings.
● Enhancement of the bookmarks page display to add categories and images.
● Possibility to add status ("On Hold" and "Plan to read") to bookmarks.
● Managers allowing you to manage a bookmark from different pages (Management includes: Add/Remove the manga as a bookmark, mark as read/unread, change status).
● Any feature can be enabled/disabled via the Advanced Options menu if you don't want it.
● Possibility to export your bookmark list as text, JSON or XML (current export results are ugly, I'm open to suggestions).
● Display your amount of unread chapters on FreeKiss' icon. The number is updated automatically at a customizable interval to warn you about new updates.
● Block harmful popups from KissManga

== Feedback and updates ==

Please note that FreeKiss is developed on my free time and is not my only project, so I unfortunately will not always have the time to work on it.
With that said, if you have any feedback or idea for a feature do not hesitate to let me know. FreeKiss will probably not be regularly updated aside from bugs fixing, but I will read the feedbacks and set time to add new features to the extension when possible.


---------------------------------------------------------------

⚠ Disclaimer ⚠

The aim of FreeKiss is to improve the usage of KissManga without entering into conflict with the website. As such, the extension does not and will not mess with the ads as they are KissManga sources of income (as long as they are not harmful to the usage of KissManga).

If any part of the extension proved to create conflicts for whatever reason, feel free to send me a message with the Support tab or on Github and I'll look into it as soon as possible.                    

확장 프로그램 기본 정보

이름 FreeKiss FreeKiss
ID jpndbkdfegaeebeehdmngbedkkchhflh
공식 URL https://chrome.google.com/webstore/detail/freekiss/jpndbkdfegaeebeehdmngbedkkchhflh
설명 Enhance your KissManga experience.
파일 크기 96.5 KB
설치 횟수 239
현재 버전 1.3.3
최근 업데이트 2019-01-16
출시 날짜 2019-01-16
평점 4.78/5 총 9 개의 평점
개발자 GDFProjects
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://gdfprojects.com/freekiss/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FreeKiss",
    "short_name": "FreeKiss",
    "description": "Enhance your KissManga experience.",
    "version": "1.3.3",
    "icons": {
        "16": "Images\/Icons\/icon16.png",
        "48": "Images\/Icons\/icon48.png",
        "128": "Images\/Icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "Images\/Icons\/icon16.png",
            "48": "Images\/Icons\/icon48.png",
            "128": "Images\/Icons\/icon128.png"
        },
        "default_popup": "Views\/FreeKissPopup.html",
        "default_title": "FreeKiss"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/kissmanga.com\/*"
            ],
            "css": [
                "Styles\/FreeKiss.css"
            ],
            "js": [
                "Tools\/jquery-3.1.1.min.js",
                "Tools\/lz-string.min.js",
                "Scripts\/Class\/FreeKiss.js",
                "Scripts\/Class\/Bookmarks.js",
                "Scripts\/Class\/Manager.js",
                "Scripts\/Menu.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/kissmanga.com\/"
            ],
            "css": [
                "Styles\/FrontPage.css"
            ],
            "js": [
                "Scripts\/FrontPage.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/kissmanga.com\/BookmarkList"
            ],
            "css": [
                "Styles\/Bookmarks.css"
            ],
            "js": [
                "Scripts\/Bookmarks.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/kissmanga.com\/Manga\/*"
            ],
            "exclude_matches": [
                "*:\/\/kissmanga.com\/Manga\/*\/*"
            ],
            "css": [
                "Styles\/Manga.css"
            ],
            "js": [
                "Scripts\/Manga.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/kissmanga.com\/Manga\/*\/*"
            ],
            "css": [
                "Styles\/Chapter.css"
            ],
            "js": [
                "Scripts\/Chapter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "Views\/Background.html"
    },
    "web_accessible_resources": [
        "Images\/Status\/Default.png",
        "Images\/Status\/OnHold.png",
        "Images\/Status\/PlanToRead.png"
    ],
    "permissions": [
        "*:\/\/kissmanga.com\/*",
        "tabs",
        "activeTab",
        "storage",
        "alarms",
        "webRequest",
        "webRequestBlocking"
    ]
}