Buy mode
When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.
What is Buy mode?
Buy mode is a Chrome extension developed by jbsiraudin, and its main feature is "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.".
Extension Screenshots
Download Buy mode Extension CRX File
Download Buy mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When entering Amazon, a small unfocused window is launched with the YouTube playlist of your choice : The Sims' Buy Mode, Nook Store Music, Wii Store Music. Icon Money by henrik lund mikkelsen from the Noun Project
Extension Basic Information
Name | Buy mode |
ID | chelhfjncfodagiaajlcedabncohepag |
Official URL | https://chromewebstore.google.com/detail/buy-mode/chelhfjncfodagiaajlcedabncohepag |
Description | When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched. |
File Size | 9.21 KB |
Installation Count | 149 |
Current Version | 0.3 |
Last Updated | 2019-08-07 |
Publish Date | 2019-08-06 |
Rating | 4.67/5 Total 6 Ratings |
Developer | jbsiraudin |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Buy mode", "version": "0.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "description": "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage" ], "browser_action": { "default_title": "Buy Mode", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.fr\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*", "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.at\/*", "https:\/\/*.amazon.es\/*", "https:\/\/*.amazon.com.mx\/*", "https:\/\/*.amazon.co.jp\/*", "https:\/\/*.amazon.it\/*", "https:\/\/*.amazon.in\/*", "https:\/\/*.amazon.cn\/*", "https:\/\/*.amazon.com.br\/*", "https:\/\/*.amazon.com.au\/*" ], "all_frames": true, "js": [ "content_script.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "manifest_version": 2, "incognito": "split" } |