Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Was ist Selection Popup?
Selection Popup ist eine Chrome-Erweiterung, die von mubaidr entwickelt wurde, und ihr Hauptmerkmal ist "Perform customizable actions (Search, Copy etc) on selected text.".
Erweiterungsscreenshots
Selection Popup-Erweiterungs-CRX-Datei herunterladen
Laden Sie Selection Popup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
Offizielle URL | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
Beschreibung | Perform customizable actions (Search, Copy etc) on selected text. |
Dateigröße | 62.59 KB |
Installationsanzahl | 1,000 |
Aktuelle Version | 1.9.7 |
Letztes Update | 2020-02-11 |
Veröffentlichungsdatum | 2020-02-11 |
Bewertung | 4.56/5 Insgesamt 45 Bewertungen |
Entwickler | mubaidr |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/mubaidr/selection-popup/issues |
Unterstützte Sprachen | 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" } |