Opens defined URL in new tabs with custom search parameters. Use the tag '{{tag}}' where you want your query to be replaced.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Custom URL Opener",
"version": "1.1resigned1",
"author": "César Seabra",
"developer": {
"name": "César Seabra",
"url": "https://github.com/cesarseabra"
},
"description": "Opens defined URL in new tabs with custom search parameters. Use the tag '{{tag}}' where you want your query to be replaced.",
"homepage_url": "https://github.com/cesarseabra/Custom-Multiple-URL-Opener",
"icons": {
"48": "icons/icon.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"notifications"
],
"browser_action": {
"default_icon": "icons/icon.png",
"default_title": "Custom URL Opener",
"default_popup": "index.html"
},
"options_ui": {
"page": "options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{5c38929f-66c5-4b41-b0e8-a8fd919d5ada}"
}
}
}