Tag Cloud Search + Translate

Tag Cloud Chrome Extension

Tag Cloud Search + Translateคืออะไร?

Tag Cloud Search + Translate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marcellolarocca และคุณลักษณะหลักของมันคือ "Tag Cloud Chrome Extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tag Cloud Search + Translate

ดาวน์โหลดไฟล์ส่วนขยาย Tag Cloud Search + Translate ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allows you, for any web page displayed in your Chrome browser, to create a Tag Cloud with the 100 words that are most often used in it, providing a quick synthesis of every page you browse, in less than a second, and with only one click.

Together with the Tag Cloud, actually right above it, a search bar is provided: you can click on any Tag in the Cloud and add it to the search bar, then you can edit the search bar text, and finally search it on some of the most common websites you might want to search on (Google, Twitter, Facebook, Quora, Wikipedia).

In addition, this extension adds an entry to your right-click context menu inside Chrome; the new entry is shown only when you have selected some text inside a page, and allows you to search the selected text with one of the search engines above, or to translate it using Google Translate (by default, it sets translation from an automatically determined language to English). All of these options requires literally two mouse clicks, and they all open the new search page in a new tab/window.

VERSION 1.3.1
================
What's new:

  * Clear button for the search bar;
  * Search starts by pressing Enter while the search bar is on focus;
  * Added an option page to set a default target language for translations and the default search engine to use when search is started by pressing enter.

VERSION 1.4.1
================

* Page language auto-detection
* Black list system for tags revised and extended to "foreign" languages (Italian, French, Spanish, Portuguese and German)

VERSION 1.5.0
================

New features added:

* You can now shift+click on a tag and highlight all the occurrences of that word in the original page; to remove highlighting for the tag, just alt+click on it;
* Highlighting for the page lasts for the whole "session": you can close the popup window, browse other tabs, and highlighting and selections will still be kept, at least until you close or reload the current one.

VERSION 2.0.2
================

* Page scraping and Tag generation algorithm improved;
* Help page available from the extension itself.

VERSION 2.0.4
================

* The color used for highlighting can be chosen from the 'Options' page available in the chrome extensions tab.
* Help page completed.

VERSION 2.1.1
================

* Extended Unicode characters support (Thanks to https://github.com/cesine)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tag Cloud Search + Translate Tag Cloud Search + Translate
ID chffjcnjklkbamfkpmjmggckeglnbkio
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tag-cloud-search-+-transl/chffjcnjklkbamfkpmjmggckeglnbkio
คำอธิบาย Tag Cloud Chrome Extension
ขนาดไฟล์ 350 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 2.1.1
อัปเดตครั้งล่าสุด 2014-01-18
วันที่เผยแพร่ 2014-01-18
คะแนน 3.14/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา marcellolarocca
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://mlarocca.github.com/01-14-2013/tagcloud.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tag Cloud Search + Translate",
    "version": "2.1.1",
    "manifest_version": 2,
    "description": "Tag Cloud Chrome Extension",
    "icons": {
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/defaultIcon19x19.png",
        "default_popup": "popup.html",
        "default_title": "Tag Cloud Search + Translate"
    },
    "content_scripts": [
        {
            "js": [
                "js\/lib\/jquery-1.8.3.min.js",
                "js\/lib\/localStorage.js",
                "js\/app\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "minimum_chrome_version": "18",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "unlimitedStorage",
        "tabs",
        "notifications",
        "contextMenus"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/lib\/localStorage.js",
            "js\/app\/common_vars.js",
            "js\/app\/contextMenu.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}