Elevate your writing with QuillBot's AI-powered productivity tools: Grammar Checker, Paraphrasing Tool, AI writer, and more!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_extensionName__",
"manifest_version": 3,
"version": "3.62.2",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"icons": {
"16": "assets/images/logo-16.png",
"48": "assets/images/logo-48.png",
"128": "assets/images/logo-128.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"*://*/*",
"https://quillbot.com/",
"https://quillbot.com/*"
],
"content_scripts": [
{
"world": "MAIN",
"matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*"
],
"js": [
"main-world-injection.js"
],
"run_at": "document_start",
"css": []
},
{
"matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*"
],
"js": [
"content-gdocs-pre.js"
],
"run_at": "document_start",
"css": []
},
{
"matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*"
],
"js": [
"content-gdocs.js"
],
"run_at": "document_idle",
"css": [
"assets/css/quillbot-fonts.css",
"assets/css/gdocs-overrides.css"
]
},
{
"js": [
"quillbot-content.js"
],
"matches": [
"*://*.wordpress.com/*"
],
"exclude_matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*"
],
"run_at": "document_idle",
"css": [
"assets/css/quillbot-fonts.css"
],
"all_frames": true
},
{
"js": [
"tosUpdate.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_end",
"all_frames": true,
"match_about_blank": true
},
{
"js": [
"quillbot-content.js"
],
"matches": [
"*://mail.google.com/*"
],
"exclude_matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*"
],
"run_at": "document_idle",
"css": [
"assets/css/quillbot-fonts.css"
]
},
{
"js": [
"detect-editors.js"
],
"exclude_matches": [
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*",
"*://mail.google.com/*",
"*://*.wordpress.com/*"
],
"matches": [
"*://*/*"
],
"run_at": "document_idle",
"css": [
"assets/css/quillbot-fonts.css"
],
"all_frames": true,
"match_about_blank": true
},
{
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true,
"css": [
"assets/css/shadow.css"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
},
{
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true,
"css": [
"assets/css/styles.css"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": "assets/images/logo.png",
"default_popup": "popup.html",
"default_title": "QuillBot"
},
"minimum_chrome_version": "88",
"permissions": [
"alarms",
"cookies",
"storage",
"activeTab",
"contextMenus",
"notifications",
"scripting",
"sidePanel"
],
"web_accessible_resources": [
{
"resources": [
"quillClassic.js"
],
"matches": [
"*://*/*"
]
},
{
"resources": [
"assets/fonts/*",
"assets/css/*",
"assets/images/*",
"toolbox.css",
"lollipop.css",
"assets/emojibase-data/*",
"content/styles/toolbox.css"
],
"matches": [
"*://*/*"
]
},
{
"resources": [
"injection.js"
],
"matches": [
"*://*/*"
]
},
{
"resources": [
"content.js"
],
"matches": [
"*://*/*"
]
},
{
"resources": [
"executor.js"
],
"matches": [
"*://*/*"
]
},
{
"resources": [
"/content/styles/*"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"https://*.coursehero.com/*",
"https://*.quillbot.com/*",
"https://*.quillbot.dev/*",
"https://quillbot.com/*",
"https://quillbot.dev/*"
]
},
"commands": {
"paraphrase": {
"description": "Invoke the paraphraser-saga on the text"
}
},
"side_panel": {
"default_path": "sidePanel.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}