Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "1.0.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"permissions": [
"storage",
"tabs",
"activeTab",
"notifications",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"https:\/\/app.gopdfly.com\/*",
"https:\/\/*.gopdfly.com\/*"
],
"js": [
"content\/content-script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*\/*.pdf",
"*:\/\/*\/*.PDF",
"*:\/\/drive.google.com\/file\/*",
"*:\/\/docs.google.com\/viewer*",
"*:\/\/*.dropbox.com\/*",
"*:\/\/*.sharepoint.com\/*",
"*:\/\/*.onedrive.live.com\/*"
],
"js": [
"content\/pdf-toolbar-injector.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_title": "PDFly",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"background": {
"service_worker": "background\/service-worker.js"
},
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": []
}