Tweet Grabber

This extension allows you to copy tweets to your clipboard.

Vad är Tweet Grabber?

Tweet Grabber är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension allows you to copy tweets to your clipboard.".

Ladda ner Tweet Grabber-förlängningens CRX-fil

Ladda ner Tweet Grabber-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

                        Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.                    

Grundläggande Information om Tillägg

Namn Tweet Grabber Tweet Grabber
ID jfkhmnmpppgaempelmhbicaelhnclkjc
Officiell webbadress https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc
Beskrivning This extension allows you to copy tweets to your clipboard.
Filstorlek 196 KB
Antal Installationer 40
Aktuell Version 1.0
Senast Uppdaterad 2017-12-04
Publiceringsdatum 2017-12-04
Utvecklare Unknown
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tweet Grabber",
    "description": "This extension allows you to copy tweets to your clipboard.",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "tweet-grabber.js"
            ],
            "css": [
                "tweet-grabber.css"
            ]
        }
    ]
}