Ancient Date Converter

Convert ancient dates into Historical Calendar dates (aka Holocene Calendar or Human Era) or any other year numbering system.

什麼是Ancient Date Converter?

Ancient Date Converter是由https://oldera.org開發的Chrome擴展程式,該擴展的主要功能是“Convert ancient dates into Historical Calendar dates (aka Holocene Calendar or Human Era) or any other year numbering system.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Ancient Date Converter擴展crx文件

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

擴展使用說明

                        This extension converts ancient dates into Historical Calendar dates on Wikipedia and other websites. The first year of the Historical Calendar is 10,000 BC. Year 2024 AD is year 1,2024 in Historical Calendar, but in most cases you can omit the first digit. 

This means you can use Historical Calendar only when dealing with ancient history. Your day-to-day life is not affected, thus no official calendar reform is needed for Historical Calendar to be practical. 

Alternatively, you can use any other timeline by picking the starting point yourself. 

The extension can potentially detect and convert all BC dates, even those that lack “BC” label. If some date is not being detected you can fix that using tools provided by the extension.

It can also detect and convert dates of the Common era, but only those that have “AD” or “CE” label next to them.                    

擴展基本資訊

名稱 Ancient Date Converter Ancient Date Converter
ID pempolhchcmklhmhghjbmiepkamocddn
官方網址 https://chromewebstore.google.com/detail/ancient-date-converter/pempolhchcmklhmhghjbmiepkamocddn
簡介 Convert ancient dates into Historical Calendar dates (aka Holocene Calendar or Human Era) or any other year numbering system.
檔案大小 78.15 KB
安裝次數 68
目前版本 9.0.1
更新時間 2023-12-31
上架時間 2021-04-22
評分 5.00/5 共 1 次評分
開發者 https://oldera.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kgcoder/Historical-Calendar/wiki
隱私政策頁面URL https://oldera.org/privacy.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ancient Date Converter",
    "version": "9.0.1",
    "manifest_version": 3,
    "description": "Convert ancient dates into Historical Calendar dates (aka Holocene Calendar or Human Era) or any other year numbering system.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "globals.js",
                "constants.js",
                "patternsInHtml.js",
                "patternsInText.js",
                "helpers.js",
                "editor\/helpers.js",
                "markupPatternProcessors.js",
                "location.js",
                "translation.js",
                "automaticTranslation.js",
                "adPatternProcessors.js",
                "patternProcessors.js",
                "pageChecker.js",
                "summaryManager.js",
                "editor\/history.js",
                "editor\/editorContent.js",
                "editor\/wikitextEditor.js",
                "editor\/selectors.js",
                "editor\/committers.js",
                "pageInfoPopup.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "images\/icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "commands": {
        "selectRange": {
            "suggested_key": {
                "default": "Ctrl+Z",
                "mac": "MacCtrl+Z"
            },
            "description": "select range"
        },
        "deselectRange": {
            "suggested_key": {
                "default": "Alt+Z",
                "mac": "Alt+Z"
            },
            "description": "deselect range"
        },
        "deleteInRange": {
            "suggested_key": {
                "default": "Alt+D",
                "mac": "Alt+D"
            },
            "description": "delete in range"
        },
        "roundYearsInRange": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "Ctrl+Q"
            },
            "description": "round years in range"
        },
        "toggleOnOff": {
            "description": "turn on\/off"
        },
        "toggleEditingMode": {
            "description": "toggle editing mode"
        },
        "goBackInHistory": {
            "description": "go back in history"
        },
        "goForwardInHistory": {
            "description": "go forward in history"
        },
        "findRoundYears": {
            "description": "find round years"
        },
        "findDecades": {
            "description": "find decades"
        },
        "findCenturiesMillennia": {
            "description": "find centuries\/millennia"
        },
        "findBCs": {
            "description": "find BCs"
        },
        "markWordCentury": {
            "description": "mark word 'century'"
        },
        "markWordMillennium": {
            "description": "mark word 'millennium'"
        },
        "commitYears": {
            "description": "commit years"
        },
        "commitDecades": {
            "description": "commit decades"
        },
        "commitCenturies": {
            "description": "commit centuries"
        },
        "commitMillennia": {
            "description": "commit millennia"
        },
        "commitRemovals": {
            "description": "commit removals"
        },
        "find1DigitNumbers": {
            "description": "find 1 digit numbers"
        },
        "find2DigitNumbers": {
            "description": "find 2 digit numbers"
        },
        "find3DigitNumbers": {
            "description": "find 3 digit numbers"
        },
        "find4DigitNumbers": {
            "description": "find 4 digit numbers"
        },
        "toggleTestingModeFromShortcut": {
            "description": "toggle test mode"
        },
        "openEditor": {
            "description": "open editor"
        },
        "clearCache": {
            "description": "clear cache"
        },
        "startWikitextEditing": {
            "description": "open wikitext editor"
        },
        "togglePageInfo": {
            "description": "toggle page info popup"
        },
        "shortenDecadesInRange": {
            "description": "shortedn decades in range"
        },
        "copyToClipboard": {
            "description": "copy to clipboard"
        },
        "openDataPage": {
            "description": "open data page"
        },
        "saveDataPage": {
            "description": "save data page"
        }
    }
}