Google SEK Search on Right Click
A context menu item to search for selected text at Google.com with the addition of ' to SEK'. Search query example: '$29.40 to SEK'.
Google SEK Search on Right Click là gì?
Google SEK Search on Right Click là một tiện ích mở rộng Chrome được phát triển bởi zomg, và tính năng chính của nó là "A context menu item to search for selected text at Google.com with the addition of ' to SEK'. Search query example: '$29.40 to SEK'.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google SEK Search on Right Click
Tải xuống các tệp mở rộng Google SEK Search on Right Click 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
Version 1.1.5: Colored icon in the extension toolbar. Started to build a options page for future customizations. Saving/loadig options requires the "storage" permission set. Version 1.1.4: If you SEK search a string containing no numbers at all, the input will be trimmed out of extra spaces and have " review" added at the end. Example: " Kensington VeriMark " --> "Kensington VeriMark review". Again, will not work if there is a number in the input ("Pixel 2" -> "2 Pixel to SEK"). Started on a options page. Version 1.1.3: Small change; added Rs to INR Version 1.1.2: Added kW to hp conversion. Selected text is also passed to the context menu. Note: depending on region settings and input format, correct search results as seen in the screenshot is not 100%. The input string "1.464.745 VND" (from malwarebytes store) may fail and, in my case, have to be edited manually to 1464745. ฿45,900.00 (apple.com/th-en) works just fine on my system. Version 1.1.1: Minor changes; added R (South African Rands), TL (TRY) and ﷼ (SAR). Version 1.1.0: New for this version is some currency sign conversion and input checks; Copied text "RUB (or руб or ₽) 22" would fail giving a direct answer. This input is now converted to '22 RUB to SEK'. "Among others, HK$" and "CA $" is now converted to "HKD" and "Canadian dollar" Permissions The permission 'Read your browsing history' is never used actively by this extension. It is required for the permissions "contextMenus" and "tabs" - to create the context menu and open the search query in a new tab. In order to be able to save and load custom settings in the options dialog, the 'storage' permission was added in version 1.1.5. Why Other extensions (probably) provide a more or less identical function to SEK Search. When I browsed the webstore for a similar app yesterday evening, I found most available alternatives were packed with other stuff that I don't really need. Wondering about the required permissions (and some comments for other extensions mentioning 'code injection' and other warnings) I made up my mind! I googled the required code, failed building it a few times but eventually (late at night) published my own extension. Changes 1.1.5: Icon color in the extension toolbar. Started on a options page, added 'storage' to permissions 1.1.4: Add ' review' to non number input 1.1.3: Minor currency conversion additions 1.1.2: kW to hp conversion and minor cosmetic changes 1.1.1: Minor currency conversion additions 1.1.0: Some checks and string conversions added - much better output now! 1.0.5: Icon transparency
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | dpagehfcidnbkfbbnmehkddnoojdkoom |
URL Chính Thức | https://chrome.google.com/webstore/detail/google-sek-search-on-righ/dpagehfcidnbkfbbnmehkddnoojdkoom |
Mô tả | A context menu item to search for selected text at Google.com with the addition of ' to SEK'. Search query example: '$29.40 to SEK'. |
Kích Thước Tệp | 15.84 KB |
Số Lần Cài Đặt | 30 |
Phiên Bản Hiện Tại | 1.1.5 |
Cập Nhật Lần Cuối | 2017-10-07 |
Ngày Phát Hành | 2017-10-07 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | zomg |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "description": "A context menu item to search for selected text at Google.com with the addition of ' to SEK'. Search query example: '$29.40 to SEK'.", "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_icon": "32.png" }, "manifest_version": 2, "minimum_chrome_version": "6", "name": "Google SEK Search on Right Click", "short_name": "SEK Search", "permissions": [ "contextMenus", "tabs", "storage" ], "version": "1.1.5", "options_ui": { "page": "options.html" } } |