Simple and convenient screenshot tool. Select an area, edit your screenshot and upload it to the server.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_screenshotplugin_name__",
"description": "__MSG_screenshotplugin_short_description__",
"icons": {
"19": "img/icon19.png",
"24": "img/icon24.png",
"32": "img/icon32.png",
"38": "img/icon38.png",
"128": "img/icon128.png",
"256": "img/icon256.png"
},
"background": {
"persistent": true,
"scripts": [
"libs/jquery-3.2.1.min.js",
"plugin.js"
]
},
"version": "6.3.1",
"content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'",
"permissions": [
"<all_urls>",
"tabs",
"activeTab",
"storage",
"unlimitedStorage",
"notifications",
"clipboardWrite",
"downloads",
"cookies",
"background",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"default_icon": {
"19": "img/icon19.png",
"24": "img/icon24.png",
"38": "img/icon38.png"
},
"default_title": "__MSG_screenshotplugin_default_title__"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}