Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Wat is Selection Popup?
Selection Popup is een Chrome-extensie ontwikkeld door mubaidr, en de belangrijkste functie is "Perform customizable actions (Search, Copy etc) on selected text.".
Extensie Screenshots
Download het CRX-bestand van de extensie Selection Popup
Download Selection Popup-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
Officiële URL | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
Beschrijving | Perform customizable actions (Search, Copy etc) on selected text. |
Bestandsgrootte | 62.59 KB |
Aantal Installaties | 1,000 |
Huidige Versie | 1.9.7 |
Laatst Bijgewerkt | 2020-02-11 |
Publicatiedatum | 2020-02-11 |
Beoordeling | 4.56/5 Totaal 45 Beoordelingen |
Ontwikkelaar | mubaidr |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/mubaidr/selection-popup/issues |
Ondersteunde Talen | 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" } |