Tweet This Page

Browser Extension that tweets the current page URL and title.

¿Qué es Tweet This Page?

Tweet This Page es una extensión de Chrome desarrollada por shuymn, y su función principal es "Browser Extension that tweets the current page URL and title.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tweet This Page

Descarga archivos de extensión Tweet This Page en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Tweet This Page Tweet This Page
ID ebddcjemiggiaedelggijfknajbchfah
URL Oficial https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah
Descripción Browser Extension that tweets the current page URL and title.
Tamaño del Archivo 33.58 KB
Cantidad de Instalaciones 393
Versión Actual 1.1.1
Última Actualización 2022-04-08
Fecha de Publicación 2020-06-01
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador shuymn
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/shuymn/tweet-this-page
URL de la Página de Ayuda https://github.com/shuymn/tweet-this-page/issues
Idiomas Soportados 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=*"
    ]
}