Ancient Date Converter

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

Apa itu Ancient Date Converter?

Ancient Date Converter adalah ekstensi Chrome yang dikembangkan oleh https://oldera.org, dan fitur utamanya adalah "Convert ancient dates into Historical Calendar dates (aka Holocene Calendar or Human Era) or any other year numbering system.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Ancient Date Converter

Unduh file ekstensi Ancient Date Converter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Ancient Date Converter Ancient Date Converter
ID pempolhchcmklhmhghjbmiepkamocddn
URL Resmi https://chromewebstore.google.com/detail/ancient-date-converter/pempolhchcmklhmhghjbmiepkamocddn
Deskripsi Convert ancient dates into Historical Calendar dates (aka Holocene Calendar or Human Era) or any other year numbering system.
Ukuran File 78.15 KB
Jumlah Instalasi 68
Versi Saat Ini 9.0.1
Terakhir Diperbarui 2023-12-31
Tanggal Publikasi 2021-04-22
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://oldera.org
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/kgcoder/Historical-Calendar/wiki
URL Halaman Kebijakan Privasi https://oldera.org/privacy.html
Bahasa yang Didukung 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"
        }
    }
}