Tweet This Page

Browser Extension that tweets the current page URL and title.

Cos'è Tweet This Page?

Tweet This Page è un'estensione di Chrome sviluppata da shuymn, e la sua funzione principale è "Browser Extension that tweets the current page URL and title.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tweet This Page

Scarica i file di estensione Tweet This Page in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The browser extension that allows to tweet the current page URL and title.
 
Feature
・Add "Tweet This Page" context menus.                    

Informazioni di Base sull'Estensione

Nome Tweet This Page Tweet This Page
ID ebddcjemiggiaedelggijfknajbchfah
URL Ufficiale https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah
Descrizione Browser Extension that tweets the current page URL and title.
Dimensione del File 33.58 KB
Conteggio Installazioni 393
Versione Corrente 1.1.1
Ultimo Aggiornamento 2022-04-08
Data di Pubblicazione 2020-06-01
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore shuymn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/shuymn/tweet-this-page
URL della Pagina di Aiuto https://github.com/shuymn/tweet-this-page/issues
Lingue Supportate en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.1.1",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/intent\/tweet?url=*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "webNavigation",
        "https:\/\/twitter.com\/intent\/tweet?url=*"
    ]
}