【V3精选推荐】一款便捷的视频音频的速度控制器,调整视频和音频的播放速度。
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {
"default_icon": {
"128": "icons/icon.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "js/oxide.js"
},
"content_scripts": [
{
"js": [
"js/check-speed.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_idle"
},
{
"all_frames": true,
"js": [
"js/crypto-js.min.js",
"js/industrial.js",
"js/systematic.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"default_locale": "zh_CN",
"description": "__MSG_application_description__",
"host_permissions": [
"<all_urls>"
],
"icons": {
"128": "icons/icon.png"
},
"manifest_version": 3,
"name": "__MSG_application_title__",
"permissions": [
"tabs",
"webRequest",
"downloads",
"storage",
"webNavigation",
"alarms",
"declarativeNetRequest",
"scripting"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
"version": "4.0.1",
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"/*"
]
}
]
}