Convenient Search

1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension

Vad är Convenient Search?

Convenient Search är en Chrome-tillägg utvecklad av https://sites.google.com/site/zhucai, och dess huvudfunktion är "1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Convenient Search-förlängningens CRX-fil

Ladda ner Convenient Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        1.search menu when right mouse down on select text;
2.highlight keyword when open search result page,and can quick scroll to keyword, such as 'Google Quick Scroll' extension

2010.8.25 update: use chrome new api :context menu api                    

Grundläggande Information om Tillägg

Namn Convenient Search Convenient Search
ID jahomhggpolhfjpomljoelcciaogmekh
Officiell webbadress https://chromewebstore.google.com/detail/convenient-search/jahomhggpolhfjpomljoelcciaogmekh
Beskrivning 1.search menu on select text; 2.highlight keyword such as 'Google Quick Scroll' extension
Filstorlek 167 KB
Antal Installationer 279
Aktuell Version 4.0.0
Senast Uppdaterad 2015-01-22
Publiceringsdatum 2015-01-21
Betyg 4.34/5 Totalt 53 Betyg
Utvecklare https://sites.google.com/site/zhucai
Betalningssätt free
Tilläggswebbplats http://www.cnblogs.com/zhucai/
Hjälpsida URL http://t.sina.com.cn/zhucai
Stödda Språk en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "setting.js",
            "encodeToGb2312.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "thumb2.png",
        "default_title": "Convenient Search Extension",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "my.css"
            ],
            "js": [
                "jquery-2.1.3.js",
                "encodeToGb2312.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "thumb2.png"
    },
    "name": "__MSG_extName__",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "version": "4.0.0",
    "manifest_version": 2
}