Reputation: 183
I want to create a Chrome extension which can forward the download links to my server.
I have two questions:
Upvotes: 1
Views: 170
Reputation: 154828
Both things are (currently) impossible to implement because there is no "download" module for Google Chrome extensions.
See the Downloads Extensions API Proposal; such a feature may be implemented in the future.
Upvotes: 4
Reputation: 5462
You can detect browser with javascript.
Browser Codename: navigator.appCodeName
Browser Name: navigator.appName
Browser Version: navigator.appVersion
Platform: navigator.platform
User-agent header: navigator.userAgent
You can try these functions at this link
Edit: Misunderstanding...
Upvotes: 0