Search On Twitter

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

Search On Twitter là gì?

Search On Twitter là một tiện ích mở rộng Chrome được phát triển bởi http://www.thetravisw.com, và tính năng chính của nó là "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search On Twitter

Tải xuống các tệp mở rộng Search On Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search On Twitter Search On Twitter
ID dhpmpdpphfgejncefefmdhklfbliefkm
URL Chính Thức https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm
Mô tả Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Kích Thước Tệp 9.53 KB
Số Lần Cài Đặt 465
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-09-28
Ngày Phát Hành 2014-09-28
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển http://www.thetravisw.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}