| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "name": "PasteTab",
- "version": "0.0.1",
- "manifest_version": 2,
- "description": "Paste Clipboard Data to new Tab",
- "icons": {
- "16": "images/icon-16.png",
- "128": "images/icon-128.png"
- },
- "background": {
- "persistent": false,
- "page": "background.html"
- },
- "permissions": [
- "tabs",
- "clipboardRead",
- "clipboardWrite"
- ],
- "content_scripts": [
- {
- "matches": [
- "http://*/*",
- "https://*/*"
- ],
- "js": [
- "scripts/oncopy.js"
- ]
- }
- ],
- "browser_action": {
- "default_icon": {
- "19": "images/icon-19.png",
- "38": "images/icon-38.png"
- },
- "default_title": "PasteTab"
- }
- }
|