A tool to import chrome search engines (keywords).
Project description
Chrome Search Engine Importer
Custom Search Engines in chrome can make searching for things in private/internal systems a lot more efficient and easier, so long as those systems allow you to input the search string in the URI.
Custom Search Engines can also function as keyword shortcuts to URLs, if you don't wish to fumble around with your bookmarks and would rather type in a keyword in the search bar + to take you to where you are trying to go.
However, when you collaborate with other people who often use the same systems that you do, it can be helpful to share these custom search gines with one another. The manual method for adding custom search engines does not scale well when you need to share a lot of them. Thus, the need for this script to make that manual process easier and the framework of defining custom search engine keywords as YAML files.
How does it work?
Defining search engine keywords in YAML
You will need to create a YML file with your hsortcuts like the example below. The example file, example_search_engines.yml
also has some practical examples.
- name: Shortcut 1 Name
keyword: shorcut1keyword
url: https://shortcut1/url?q={searchTerms}
- name: Shortcut 2 Name
keyword: shortcut2keyword
url: https://shortcut2url.com/search/%s
- name: Virustotal UI
keyword: vtui
url: https://www.virustotal.com
NOTE: %s
and {searchTerms}
are synonymous. All occurrences of %s
in the URL are replaced with {searchTerms}
when being added to the database.
Using the script
Once you have defined your shortcuts, you may use the script, you must pass the path to the YML file to it. Example:
python3 chrome-search-engine-importer.py -e example_search_engines.yml
By default, the script will look in the default paths for Chrome profiles (on MacOS, Windows, and Linux). You will be given the option to choose which profiles found in the default paths to load the keyhwords in.
To bypass this, you may optionally use the -p
flag to specify a path to a profile that is not in a default path.
NOTE: The path should point to the directory that has the sqlite database file Web Data
inside of it.
> python3 chrome-search-engine-importer.py --help
Usage: chrome-search-engine-importer.py [OPTIONS]
Options:
-e, --search-engines-file TEXT Path to a YAML file with search engines
defined [required]
-p, --profile TEXT Path to a chrome profile. Useful if a target
chrome profile is in a custom path.
--help Show this message and exit.
The script will install any keywords in the YAML that do not already exist in the Web Data
database. If you want to add these to be added, either adjust modify the keyword so that it is unique, or delete the existing keyword from your chrome search engines here.
You have to restart chrome
On Windows, Chrome needs to be closed while the script runs otherwise you will encounter an error when the script tries to swap out the Web Data sqlite database.
For the newly added keywords to be visible in chrome, you must relaunch Chrome so that it reloads the SQLite database. I recommend enabling the "Continue where you left off" Startup Option in Chrome so that your tabs recover after you restart the browser.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file chrome-search-engine-importer-0.1.3.tar.gz
.
File metadata
- Download URL: chrome-search-engine-importer-0.1.3.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6321d21e4a2c7ac6a878df52329fb221bf2094298640bb5d09c1f6b5f3bc922 |
|
MD5 | 5aa711720cff631a366e9cb0ee5ec585 |
|
BLAKE2b-256 | 66520cd1f3dcbebd82156e16b286b058fd649e2ab66cc7011561d804194dc8a4 |
File details
Details for the file chrome_search_engine_importer-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: chrome_search_engine_importer-0.1.3-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97269aa8e1fc7c50563c516bf74f8575dd2e29bc8134104c437070bdd1d6f7ef |
|
MD5 | 4c0b7da9883b94da311fe60b37447c9d |
|
BLAKE2b-256 | 14191b1ce883ba82052b7547c08ba4c16c707fb1b2849b7c98facc4cd32234c6 |