Post Marker

This is an extension to mark new posts.

ما هو Post Marker؟

Post Marker هو إضافة Chrome تم تطويرها بواسطة developer.waieight.، والميزة الرئيسية لها هي "This is an extension to mark new posts.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Post Marker

قم بتنزيل ملفات الامتداد Post Marker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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/
عنوان صفحة سياسة الخصوصية 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"
    ]
}