Post Marker

This is an extension to mark new posts.

Post Marker क्या है?

Post Marker developer.waieight. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an extension to mark new posts."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Post Marker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
गोपनीयता नीति पृष्ठ 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"
    ]
}