FireShot makes full page screen captures - http://bit.ly/RlBQMV
Screenshots are quickly captured and:
― Saved as Image / PDF with links and text
― Sent to clipboard
― Printed
Capture all open tabs or provide a list of the URLs for grabbing
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,
"name": "__MSG_application_title__",
"short_name": "FireShot",
"version": "1.12.18",
"description": "__MSG_application_description__",
"options_ui": {
"page": "fsOptions.html",
"browser_style": true
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/fsXBrowserSupport.js",
"scripts/fsPreferences.js",
"scripts/fsUtils.js",
"scripts/fsCommands.js",
"scripts/fsSSS.js",
"scripts/fsNativeAPISupport.js",
"scripts/fsBackground.js",
"scripts/fsWASMAPISupport.js",
"scripts/fsAutomation.js"
]
},
"commands": {
"last-used-action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "__MSG_options_label_last_action_hotkey__"
},
"capture-entire-page-action": {
"suggested_key": {
"default": "Alt+Shift+1",
"mac": "Command+Shift+1"
},
"description": "__MSG_action_capture_entire_lite__"
},
"capture-visible-page-action": {
"suggested_key": {
"default": "Alt+Shift+3",
"mac": "Command+Shift+2"
},
"description": "__MSG_action_capture_visible_lite__"
},
"capture-selection-action": {
"suggested_key": {
"default": "Alt+Shift+4",
"mac": "Command+Shift+6"
},
"description": "__MSG_action_capture_selection_lite__"
}
},
"permissions": [
"activeTab",
"<all_urls>",
"contextMenus",
"nativeMessaging",
"downloads",
"storage"
],
"optional_permissions": [
"tabs",
"clipboardWrite"
],
"content_security_policy": "script-src 'self'; object-src 'self';",
"browser_action": {
"browser_style": true,
"default_icon": "images/sss_48.png",
"default_title": "FireShot - Capture page",
"default_popup": "fsPopup.html"
},
"icons": {
"16": "images/sss_16.png",
"32": "images/sss_32.png",
"48": "images/sss_48.png",
"128": "images/sss_128.png"
},
"content_scripts": [
{
"matches": [
"*://getfireshot.com/activate.php?*"
],
"js": [
"scripts/fsActivation.js"
]
}
],
"applications": {
"gecko": {
"id": "{0b457cAA-602d-484a-8fe7-c1d894a011ba}",
"strict_min_version": "77.0"
}
},
"web_accessible_resources": [
"images/*.gif"
]
}