Search On Twitter

Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu

Apa itu Search On Twitter?

Search On Twitter adalah ekstensi Chrome yang dikembangkan oleh http://www.thetravisw.com, dan fitur utamanya adalah "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Search On Twitter

Unduh file ekstensi Search On Twitter 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

                        Search On Twitter adds to the Right-Click context menu.  

If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented.

Source Code - https://github.com/travis-w/Search-On-Twitter                    

Informasi Dasar Ekstensi

Nama Search On Twitter Search On Twitter
ID dhpmpdpphfgejncefefmdhklfbliefkm
URL Resmi https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm
Deskripsi Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Ukuran File 9.53 KB
Jumlah Instalasi 465
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-09-28
Tanggal Publikasi 2014-09-28
Penilaian 3.71/5 Total 7 Penilaian
Pengembang http://www.thetravisw.com
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search On Twitter",
    "description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ]
}