Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Selection Popup क्या है?
Selection Popup mubaidr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Perform customizable actions (Search, Copy etc) on selected text."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Selection Popup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
आधिकारिक URL | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
विवरण | Perform customizable actions (Search, Copy etc) on selected text. |
फ़ाइल का आकार | 62.59 KB |
स्थापना संख्या | 1,000 |
वर्तमान संस्करण | 1.9.7 |
अंतिम अपडेट | 2020-02-11 |
प्रकाशन तिथि | 2020-02-11 |
रेटिंग | 4.56/5 कुल 45 रेटिंग्स |
डेवलपर | mubaidr |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/mubaidr/selection-popup/issues |
समर्थित भाषाएँ | 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" } |