AvJuicy Plugin
It converts all embeded videos to native player format.
Was ist AvJuicy Plugin?
AvJuicy Plugin ist eine Chrome-Erweiterung, die von dirtypetter entwickelt wurde, und ihr Hauptmerkmal ist "It converts all embeded videos to native player format.".
Erweiterungsscreenshots
AvJuicy Plugin-Erweiterungs-CRX-Datei herunterladen
Laden Sie AvJuicy Plugin-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
此應用程式可去除avjuicy.com影片的廣告,並切換為原生影片播放器,大大提高用戶體驗。
It converts all embeded videos in avjuicy.com into native video player format.(for: avjuicy.com) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mnbcgpppofgjgpgeppkajimgneblhkej |
| Offizielle URL | https://chromewebstore.google.com/detail/avjuicy-plugin/mnbcgpppofgjgpgeppkajimgneblhkej |
| Beschreibung | It converts all embeded videos to native player format. |
| Dateigröße | 15.46 KB |
| Installationsanzahl | 24 |
| Aktuelle Version | 1.0.4 |
| Letztes Update | 2018-07-30 |
| Veröffentlichungsdatum | 2018-07-30 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | dirtypetter |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AvJuicy Plugin",
"description": "It converts all embeded videos to native player format.",
"version": "1.0.4",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"page": "background.html"
},
"permissions": [
"background"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"execute.js"
],
"run_at": "document_idle"
},
{
"js": [
"sub.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"all_frames": true,
"run_at": "document_idle"
}
]
} | |