Easy Address Search
Search for addresses with just one click!
Τι είναι το Easy Address Search;
Το Easy Address Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jrmkim50, και η κύρια λειτουργία του είναι "Search for addresses with just one click!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Easy Address Search
Λήψη αρχείων επέκτασης Easy Address Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Viewing locations just became much faster. Before, whenever you saw either the name or address of a certain place, you had to do all these steps: highlight the address, copy the address, open a new tab, go to google maps, paste the address, click search. With Easy Address Search, all you have to do is right click the location and we will show you the map. Something new about this extension is that we don't navigate you away from your current tab when we show you the map! Instead, you see the map as a smaller popup; after you are finished looking at the map, you can hide the popup and get back to whatever you were just doing. Highlight, right click, search!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Easy Address Search |
ID | gffdlpchaikioghfggemdmibooooigeh |
Επίσημο URL | https://chromewebstore.google.com/detail/easy-address-search/gffdlpchaikioghfggemdmibooooigeh |
Περιγραφή | Search for addresses with just one click! |
Μέγεθος Αρχείου | 106 KB |
Αριθμός Εγκαταστάσεων | 146 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-08-24 |
Ημερομηνία Δημοσίευσης | 2020-08-24 |
Αξιολόγηση | 2.33/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | jrmkim50 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easy Address Search", "version": "1.0", "description": "Search for addresses with just one click!", "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/maps.googleapis.com https:\/\/maps.gstatic.com https:\/\/ssl.google-analytics.com https:\/\/maps.google.com\/ https:\/\/unpkg.com\/[email protected]\/dist\/leaflet.js; object-src 'self';media-src 'self';", "background": { "scripts": [ "background.js", "page.js" ], "persistent": false }, "icons": { "64": "assets\/logo_64.png", "128": "assets\/logo_128.png", "512": "assets\/logo_512.png" }, "permissions": [ "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*.com\/*", "https:\/\/*.com\/*", "http:\/\/*.org\/*", "https:\/\/*.org\/*", "http:\/\/*.edu\/*", "https:\/\/*.edu\/*", "http:\/\/*.gov\/*", "https:\/\/*.gov\/*", "http:\/\/*.io\/*", "https:\/\/*.io\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "browser_action": { "default_title": "Highlight an address to search it on Google Maps" }, "web_accessible_resources": [ "popup.html", "assets\/Spin-1s-200px.gif" ], "manifest_version": 2 } |