Quote Tweet Viewer

Adds a “see quote tweets” button to Twitter.

Vad är Quote Tweet Viewer?

Quote Tweet Viewer är en Chrome-tillägg utvecklad av charlie.r.smart, och dess huvudfunktion är "Adds a “see quote tweets” button to Twitter.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Quote Tweet Viewer-förlängningens CRX-fil

Ladda ner Quote Tweet Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension adds a “see quote tweets” button to tweets on Twitter. Clicking the button will open a new tab with a pre-filled search for all quote retweets for the original tweet.

Quote icon used on tweets via Recep Kutuk.                    

Grundläggande Information om Tillägg

Namn Quote Tweet Viewer Quote Tweet Viewer
ID akbjcbkanlkcpcejcohppnpcecngjghc
Officiell webbadress https://chromewebstore.google.com/detail/quote-tweet-viewer/akbjcbkanlkcpcejcohppnpcecngjghc
Beskrivning Adds a “see quote tweets” button to Twitter.
Filstorlek 18.39 KB
Antal Installationer 207
Aktuell Version 0.1.1
Senast Uppdaterad 2019-04-05
Publiceringsdatum 2019-04-04
Utvecklare charlie.r.smart
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quote Tweet Viewer",
    "description": "Adds a \u201csee quote tweets\u201d button to Twitter.",
    "version": "0.1.1",
    "manifest_version": 2,
    "web_accessible_resources": [
        "fonts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "tweet.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "32": "icons\/icon_32.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png"
    }
}