Tweet This Page

Browser Extension that tweets the current page URL and title.

Apa itu Tweet This Page?

Tweet This Page adalah ekstensi Chrome yang dikembangkan oleh shuymn, dan fitur utamanya adalah "Browser Extension that tweets the current page URL and title.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Tweet This Page

Unduh file ekstensi Tweet This Page dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Tweet This Page Tweet This Page
ID ebddcjemiggiaedelggijfknajbchfah
URL Resmi https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah
Deskripsi Browser Extension that tweets the current page URL and title.
Ukuran File 33.58 KB
Jumlah Instalasi 393
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2022-04-08
Tanggal Publikasi 2020-06-01
Penilaian 4.50/5 Total 2 Penilaian
Pengembang shuymn
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/shuymn/tweet-this-page
URL Halaman Bantuan https://github.com/shuymn/tweet-this-page/issues
Bahasa yang Didukung 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=*"
    ]
}