AvJuicy Plugin
It converts all embeded videos to native player format.
Cos'è AvJuicy Plugin?
AvJuicy Plugin è un'estensione di Chrome sviluppata da dirtypetter, e la sua funzione principale è "It converts all embeded videos to native player format.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AvJuicy Plugin
Scarica i file di estensione AvJuicy Plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
此應用程式可去除avjuicy.com影片的廣告,並切換為原生影片播放器,大大提高用戶體驗。
It converts all embeded videos in avjuicy.com into native video player format.(for: avjuicy.com) Informazioni di Base sull'Estensione
| Nome | |
| ID | mnbcgpppofgjgpgeppkajimgneblhkej |
| URL Ufficiale | https://chromewebstore.google.com/detail/avjuicy-plugin/mnbcgpppofgjgpgeppkajimgneblhkej |
| Descrizione | It converts all embeded videos to native player format. |
| Dimensione del File | 15.46 KB |
| Conteggio Installazioni | 24 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2018-07-30 |
| Data di Pubblicazione | 2018-07-30 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | dirtypetter |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
]
} | |