Tweet This Page

Browser Extension that tweets the current page URL and title.

Co je Tweet This Page?

Tweet This Page je rozšíření Chrome vyvinuté shuymn, a jeho hlavní funkcí je „Browser Extension that tweets the current page URL and title.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Tweet This Page

Stáhněte si soubory rozšíření Tweet This Page ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Tweet This Page Tweet This Page
ID ebddcjemiggiaedelggijfknajbchfah
Oficiální URL https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah
Popis Browser Extension that tweets the current page URL and title.
Velikost souboru 33.58 KB
Počet instalací 393
Aktuální Verze 1.1.1
Poslední Aktualizace 2022-04-08
Datum Vydání 2020-06-01
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář shuymn
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/shuymn/tweet-this-page
URL Stránky Nápovědy https://github.com/shuymn/tweet-this-page/issues
Podporované Jazyky 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=*"
    ]
}