AvJuicy Plugin
It converts all embeded videos to native player format.
What is AvJuicy Plugin?
AvJuicy Plugin is a Chrome extension developed by dirtypetter, and its main feature is "It converts all embeded videos to native player format.".
Extension Screenshots
Download AvJuicy Plugin Extension CRX File
Download AvJuicy Plugin 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
此應用程式可去除avjuicy.com影片的廣告,並切換為原生影片播放器,大大提高用戶體驗。 It converts all embeded videos in avjuicy.com into native video player format.(for: avjuicy.com)
Extension Basic Information
Name | AvJuicy Plugin |
ID | mnbcgpppofgjgpgeppkajimgneblhkej |
Official URL | https://chromewebstore.google.com/detail/avjuicy-plugin/mnbcgpppofgjgpgeppkajimgneblhkej |
Description | It converts all embeded videos to native player format. |
File Size | 15.46 KB |
Installation Count | 24 |
Current Version | 1.0.4 |
Last Updated | 2018-07-30 |
Publish Date | 2018-07-30 |
Rating | 5.00/5 Total 1 Ratings |
Developer | dirtypetter |
Payment Type | free |
Supported Languages | 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" } ] } |