Post Marker

This is an extension to mark new posts.

Apa itu Post Marker?

Post Marker adalah ekstensi Chrome yang dikembangkan oleh developer.waieight., dan fitur utamanya adalah "This is an extension to mark new posts.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Post Marker

Unduh file ekstensi Post Marker 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

                        Bookmarked Bluesky and X home screen new posts for easy viewing.

Notes
1. New posts are displayed only on the home screen, list, and search of the bookmarked Bluesky and X.
2. The standard time zone for new posts changes each time you close the home screen, list, or search of the bookmarked Bluesky and X.
3. The new post may not be displayed due to changes in the specifications of Bluesky and X.                    

Informasi Dasar Ekstensi

Nama Post Marker Post Marker
ID jcnooniekpdknmhgdcobfjibfdmamgap
URL Resmi https://chromewebstore.google.com/detail/post-marker/jcnooniekpdknmhgdcobfjibfdmamgap
Deskripsi This is an extension to mark new posts.
Ukuran File 41.89 KB
Jumlah Instalasi 34
Versi Saat Ini 0.0.0.25
Terakhir Diperbarui 2024-03-03
Tanggal Publikasi 2024-02-13
Pengembang developer.waieight.
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://waieight.hatenablog.jp/
URL Halaman Kebijakan Privasi https://waieight.hatenablog.jp/entry/2021/03/23/180238
Bahasa yang Didukung en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Post Marker",
    "version": "2.0.0.25",
    "version_name": "0.0.0.25",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "icons": {
        "128": "\/icon\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bsky.app\/*"
            ],
            "js": [
                "\/jquery\/jquery-3.7.1.min.js",
                "\/js\/bluemarker.js"
            ],
            "css": [
                "\/css\/bluemarker.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "\/jquery\/jquery-3.7.1.min.js",
                "\/js\/xmarker.js"
            ],
            "css": [
                "\/css\/xmarker.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "bookmarks",
        "history",
        "management",
        "storage",
        "tabs"
    ]
}