Post Marker

This is an extension to mark new posts.

什麼是Post Marker?

Post Marker是由developer.waieight.開發的Chrome擴展程式,該擴展的主要功能是“This is an extension to mark new posts.”。

擴展截圖

screenshot

下載Post Marker擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Post Marker Post Marker
ID jcnooniekpdknmhgdcobfjibfdmamgap
官方網址 https://chromewebstore.google.com/detail/post-marker/jcnooniekpdknmhgdcobfjibfdmamgap
簡介 This is an extension to mark new posts.
檔案大小 41.89 KB
安裝次數 34
目前版本 0.0.0.25
更新時間 2024-03-03
上架時間 2024-02-13
開發者 developer.waieight.
電子郵箱 [email protected]
付費類型 free
擴展官網 https://waieight.hatenablog.jp/
隱私政策頁面URL https://waieight.hatenablog.jp/entry/2021/03/23/180238
支援的語言 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"
    ]
}