Copy anywhere
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Easy Copy",
"description": "Copy anywhere",
"author": "LoryHuang && AmadeusXie",
"version": "0.1.0",
"manifest_version": 2,
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"browser_action": {
"default_title": "Easy Copy",
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/16-gray.png",
"32": "icons/32-gray.png",
"48": "icons/48-gray.png",
"128": "icons/128-gray.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options/options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"injects.js",
"content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"tabs",
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}