Tweet This Page

Browser Extension that tweets the current page URL and title.

Co to jest Tweet This Page?

Tweet This Page to rozszerzenie Chrome opracowane przez shuymn, a jego główną funkcją jest „Browser Extension that tweets the current page URL and title.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tweet This Page

Pobierz pliki rozszerzeń Tweet This Page w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Tweet This Page Tweet This Page
ID ebddcjemiggiaedelggijfknajbchfah
Oficjalny URL https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah
Opis Browser Extension that tweets the current page URL and title.
Rozmiar pliku 33.58 KB
Liczba instalacji 393
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2022-04-08
Data Publikacji 2020-06-01
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper shuymn
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/shuymn/tweet-this-page
Adres URL Strony Pomocy https://github.com/shuymn/tweet-this-page/issues
Obsługiwane Języki 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=*"
    ]
}