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文件

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

擴展使用說明

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