twDisplayVicinity

Display the vicinity of a particular tweet on Twitter.

twDisplayVicinity क्या है?

twDisplayVicinity https://memo.furyutei.work द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display the vicinity of a particular tweet on Twitter."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में twDisplayVicinity एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        On Twitter's official website (https://twitter.com/*), display tweets before and after a specific tweet in timeline format.
It is useful when you want to know what the same person is tweeting about before and after a tweet.

==========

- Retweeted
- Introduced in blogs etc.
- Hit with search engine


You might not know what tweets were around before and after.
If you can read the tweets before and after, you may be able to see an unexpected context you did not understand from a single tweet.

When installing this extension, the "vicinify(neighbor)" link will be displayed when you see Twitter's timeline or single tweet.
By clicking on this link, a separate tab / another window opens, you can see the timeline before and after that tweet.

Also, if your tweets are retweeted, opening the "Notification" timeline (https://twitter.com/i/notifications) will also display the "vicinity" link in the notice of the retweet.
By clicking, you can see what the person is tweeting about RT tweets.                    

एक्सटेंशन की मूल जानकारी

नाम twDisplayVicinity twDisplayVicinity
ID anmfeeanmnmdkjlhojpodibignbcfgjm
आधिकारिक URL https://chrome.google.com/webstore/detail/anmfeeanmnmdkjlhojpodibignbcfgjm
विवरण Display the vicinity of a particular tweet on Twitter.
फ़ाइल का आकार 202 KB
स्थापना संख्या 11,523
वर्तमान संस्करण 0.3.3.0
अंतिम अपडेट 2022-09-29
प्रकाशन तिथि 2020-02-19
रेटिंग 4.45/5 कुल 42 रेटिंग्स
डेवलपर https://memo.furyutei.work
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://memo.furyutei.work/entry/20140609/twDisplayVicinity
सहायता पृष्ठ URL https://github.com/furyutei/twDisplayVicinity_Chrome/issues
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_title__",
    "short_name": "__MSG_ext_short_name__",
    "version": "0.3.3.0",
    "description": "__MSG_ext_description__",
    "author": "furyu",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "96": "images\/icon_96.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*",
                "*:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/decimal.min.js",
                "scripts\/inject_script.js",
                "scripts\/load_options.js",
                "scripts\/disable_graphql_profile_timeline.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "scripts\/main_react.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "scripts\/main_tweetdeck.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": "images\/icon_16.png",
        "default_title": "__MSG_ext_title__",
        "default_popup": "html\/options.html"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/*.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "incognito": "split"
}