Instagram Video Parser is a lightweight browser extension designed to help users analyze and work with Instagram video page URLs.
The extension runs locally in the browser and only works when the user actively interacts with it. It does not perform background crawling or broad page interception.
- Parse Instagram video page URLs
- Extract structured video-related information from the current page
- Add a simple action button on supported Instagram video pages
- Open the corresponding GrabClip page for further processing
- Run with a reduced permission set for a cleaner and more privacy-friendly extension design
When the user clicks the extension icon, or clicks the action button inserted on a supported Instagram video page, the extension reads the current public video page URL and opens the corresponding GrabClip page in a new tab.
Example continuation page:
https://www.grabclip.com/instagram
This extension uses a minimal permission set:
activeTab— used only when the user actively clicks the extensionhost_permissionsfor*.instagram.com— used to work on supported Instagram pages
Compared with earlier versions, this release reduces permissions and does not require webRequest.
- No user account is required
- No personal data is collected
- No browsing history is harvested
- No background monitoring is performed
- The extension only processes publicly available information from the active Instagram page when triggered by the user
Currently supported:
- Instagram Reel pages
- Instagram video-related public page URLs that the extension can detect and parse
.
├── _locales/ # Localization files
├── analyzers/
│ ├── base.js # Base analyzer
│ └── instagram.js # Instagram page analyzer
├── icons/ # Extension icons
├── background.js # Background service worker
├── content.js # Content script
├── manifest.json # Chrome Extension Manifest V3
└── README.md
- Download or clone this repository
- Open
chrome://extensions/ - Enable Developer mode
- Click Load unpacked
- Select the project folder
- Open a supported Instagram video page
- Click the extension icon in the browser toolbar
or use the action button injected on the page - The extension extracts the current video page URL
- A GrabClip page opens in a new tab for the next step
- Built with Chrome Extension Manifest V3
- Uses a background service worker
- Uses content scripts on supported Instagram pages
- Uses localized extension metadata via
_locales
- Google Chrome
- Other Chromium-based browsers that support Manifest V3
- Reduced extension permissions
- Removed unnecessary
webRequestpermission usage - Aligned permission strategy with other GrabClip-related extensions
- Kept the extension focused on user-triggered URL parsing
GrabClip Instagram page:
https://www.grabclip.com/instagram
MIT License