Comic Updater

A button that replaces the bookmark location that shares the most characters with the current tab with the current tab's location.

Comic Updater란 무엇입니까?

Comic Updater은(는) ian.hannibal.lake에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A button that replaces the bookmark location that shares the most characters with the current tab with the current tab's location."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        For those of us that are way behind on your favorite web comic, the only way to make any progress is to:
1. Open a bookmark to the latest comic you've read
2. Read any number of comics
3. Manually copy and paste the new link to the latest comic you've read back in to your bookmark

This add-on automates that process by providing you a one click bookmark updater. It works by finding the bookmark whose link is closest to your current tab (ie, the closest link to your current tab of http://xkcd.com/699/ might be your bookmark to http://xkcd.com/680) and replacing that bookmark's link with your current tab's link. In the case where there are two bookmarks that are equally close, you'll get a popup saying that the add-on could not find a unique closest bookmark and no changes will be made.

Note this extension is also available for Firefox: https://addons.mozilla.org/en-US/firefox/addon/comicupdater/                    

확장 프로그램 기본 정보

이름 Comic Updater Comic Updater
ID pclklbdlpfhhbigalgggdfgiegbkipne
공식 URL https://chrome.google.com/webstore/detail/comic-updater/pclklbdlpfhhbigalgggdfgiegbkipne
설명 A button that replaces the bookmark location that shares the most characters with the current tab with the current tab's location.
파일 크기 15.27 KB
설치 횟수 181
현재 버전 1.0
최근 업데이트 2021-10-30
출시 날짜 2017-12-09
평점 4.67/5 총 21 개의 평점
개발자 ian.hannibal.lake
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comic Updater",
    "description": "A button that replaces the bookmark location that shares the most characters with the current tab with the current tab's location.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "eventPage.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "bookmarks",
        "notifications",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Update Closest Bookmark",
        "default_icon": "icon16.png"
    },
    "offline_enabled": true
}