https://github.com/rendfall/chrome-insert-db
[Chrome Extension] A basic webservice to send request to remote server
https://github.com/rendfall/chrome-insert-db
Last synced: about 1 month ago
JSON representation
[Chrome Extension] A basic webservice to send request to remote server
- Host: GitHub
- URL: https://github.com/rendfall/chrome-insert-db
- Owner: rendfall
- Created: 2015-01-24T23:17:51.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-24T23:22:53.000Z (over 11 years ago)
- Last Synced: 2024-03-21T06:43:44.753Z (about 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 434 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InsertDB
A basic webservice to send request to remote server
# Install
Required file: manifest.json
```json
{
"manifest_version": 2,
"name": "InsertDB - WebService",
"description": "A basic webservice to send request to remote server",
"version": "1.0",
"permissions": [
"storage",
"activeTab",
"*://*.domain.com/*"
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"options_page": "options.html",
"browser_action": {
"default_icon": {
"19": "images/icon48.png",
"38": "images/icon48.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": ["js/scripts.js"],
"persistent": false
},
"web_accessible_resources": [
"images/*",
"js/*"
]
}
```