Thorium Scroll Tweaker is a small extension that allows you to tweak the scroll speed on websites.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_meta_Name__",
"short_name": "__MSG_meta_ShortName__",
"version": "1.0.5",
"version_name": "1.0.5",
"offline_enabled": true,
"minimum_chrome_version": "88",
"default_locale": "en",
"description": "__MSG_meta_description__",
"author": "Alex313031",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_start",
"js": [
"index.js"
]
}
],
"action": {
"default_popup": "settings/index.html"
},
"homepage_url": "https://github.com/Alex313031/Thorium-Scroll-Tweaker",
"icons": {
"16": "icons/icon16.png",
"24": "icons/icon24.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png"
},
"permissions": [
"storage"
]
}