Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Co to jest Selection Popup?
Selection Popup to rozszerzenie Chrome opracowane przez mubaidr, a jego główną funkcją jest „Perform customizable actions (Search, Copy etc) on selected text.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Selection Popup
Pobierz pliki rozszerzeń Selection Popup w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. You can manage search engines in options, their order of appearance, names etc Enable or disable available commands in the options. Or even use your styles using CSS to customize the look of popup.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
Oficjalny URL | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
Opis | Perform customizable actions (Search, Copy etc) on selected text. |
Rozmiar pliku | 62.59 KB |
Liczba instalacji | 1,000 |
Aktualna Wersja | 1.9.7 |
Ostatnia Aktualizacja | 2020-02-11 |
Data Publikacji | 2020-02-11 |
Ocena | 4.56/5 Łącznie 45 Oceny |
Deweloper | mubaidr |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/mubaidr/selection-popup/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "css": [ ".\/contentScript.css" ], "js": [ ".\/contentScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Perform customizable actions (Search, Copy etc) on selected text.", "icons": { "16": "assets\/icons\/icon_48.png", "128": "assets\/icons\/icon_128.png" }, "manifest_version": 2, "name": "Selection Popup", "options_ui": { "page": "options.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "version": "1.9.7" } |