Take web page screenshots in one click!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"persistent": false,
"scripts": [
"eventPage.js",
"date.format.js",
"contextMenu.js"
]
},
"browser_action": {
"default_title": "Take screenshot"
},
"content_scripts": [
{
"js": [
"selfIdentifier.js"
],
"matches": [
"http://floomby.com/*"
],
"run_at": "document_end"
}
],
"description": "Take web page screenshots in one click!",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 2,
"name": "Floomby",
"permissions": [
"contextMenus",
"tabs",
"clipboardWrite",
"activeTab",
"notifications",
"storage",
"http://floomby.com/",
"https://floomby.com/"
],
"short_name": "Floomby",
"version": "1.5",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}