Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Hvad er Selection Popup?
Selection Popup er en Chrome-udvidelse udviklet af mubaidr, og dens hovedfunktion er "Perform customizable actions (Search, Copy etc) on selected text.".
Udvidelsesskærmbilleder
Download Selection Popup-udvidelses-CRX-fil
Download Selection Popup-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
Officiel URL | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
Beskrivelse | Perform customizable actions (Search, Copy etc) on selected text. |
Filstørrelse | 62.59 KB |
Antal Installationer | 1,000 |
Nuværende Version | 1.9.7 |
Senest Opdateret | 2020-02-11 |
Udgivelsesdato | 2020-02-11 |
Bedømmelse | 4.56/5 Samlet 45 Bedømmelser |
Udvikler | mubaidr |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/mubaidr/selection-popup/issues |
Understøttede Sprog | 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" } |