Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Reels Flow: Auto Scroll for Instagram Reels",
"short_name": "Reels Flow",
"version": "2.0.0",
"description": "Watch Instagram Reels hands-free! Auto-scrolls instantly. Includes an on-screen button for easy control. No more swiping.",
"icons": {
"16": "src\/assets\/icons\/icon16.png",
"48": "src\/assets\/icons\/icon48.png",
"128": "src\/assets\/icons\/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"js": [
"src\/content\/content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "src\/popup\/popup.html"
},
"background": {
"service_worker": "src\/background\/background.js"
}
}