Buy mode
When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.
Was ist Buy mode?
Buy mode ist eine Chrome-Erweiterung, die von jbsiraudin entwickelt wurde, und ihr Hauptmerkmal ist "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.".
Erweiterungsscreenshots
Buy mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Buy mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | chelhfjncfodagiaajlcedabncohepag |
| Offizielle URL | https://chromewebstore.google.com/detail/buy-mode/chelhfjncfodagiaajlcedabncohepag |
| Beschreibung | When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched. |
| Dateigröße | 9.21 KB |
| Installationsanzahl | 149 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2019-08-07 |
| Veröffentlichungsdatum | 2019-08-06 |
| Bewertung | 4.67/5 Insgesamt 6 Bewertungen |
| Entwickler | jbsiraudin |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
} | |