AudioGrabber for AudioSplitter
Add everything you watch on youtube into the AudioSplitter tracklist of your choice !
Was ist AudioGrabber for AudioSplitter?
AudioGrabber for AudioSplitter ist eine Chrome-Erweiterung, die von lmieulet entwickelt wurde, und ihr Hauptmerkmal ist "Add everything you watch on youtube into the AudioSplitter tracklist of your choice !".
AudioGrabber for AudioSplitter-Erweiterungs-CRX-Datei herunterladen
Laden Sie AudioGrabber for AudioSplitter-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
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ganjpdmjpmjinffpbhepfnnbbnmloblg |
| Offizielle URL | https://chromewebstore.google.com/detail/audiograbber-for-audiospl/ganjpdmjpmjinffpbhepfnnbbnmloblg |
| Beschreibung | Add everything you watch on youtube into the AudioSplitter tracklist of your choice ! |
| Dateigröße | 29.34 KB |
| Installationsanzahl | 50 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2015-11-20 |
| Veröffentlichungsdatum | 2015-11-20 |
| Entwickler | lmieulet |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AudioGrabber for AudioSplitter",
"version": "1.0",
"description": "Add everything you watch on youtube into the AudioSplitter tracklist of your choice !",
"manifest_version": 2,
"background": {
"scripts": [
"src\/background\/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "src\/popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"src\/content-scripts\/parser.js"
]
}
],
"permissions": [
"storage",
"*:\/\/audiosplitter.fm\/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |