Write perfect content with Outwrite. Check spelling & grammar, improve writing style, find synonyms and paraphrase sentences.
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_appTitle__",
"short_name": "Outwrite",
"version": "10.3.7",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"16": "assets/icons/icon-16.png",
"48": "assets/icons/icon-48.png",
"128": "assets/icons/icon-128.png"
},
"browser_action": {
"default_icon": {
"16": "assets/icons/icon-16.png",
"38": "assets/icons/icon-38.png",
"128": "assets/icons/icon-128.png"
},
"default_popup": "popup.html",
"default_title": "Outwrite"
},
"commands": {
"synonym": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "__MSG_synonymShortcut__"
},
"rewrite": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "__MSG_rewriteShortcut__"
},
"next-suggestion": {
"suggested_key": {
"default": "Ctrl+Shift+Period",
"mac": "Command+Shift+Period"
},
"description": "__MSG_nextShortcut__"
},
"previous-suggestion": {
"suggested_key": {
"default": "Ctrl+Shift+Comma",
"mac": "Command+Shift+Comma"
},
"description": "__MSG_prevShortcut__"
}
},
"background": {
"scripts": [
"background.bundle.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http://docs.google.com/document/*",
"https://docs.google.com/document/*"
],
"js": [
"googledocs.bundle.js"
],
"run_at": "document_start"
},
{
"all_frames": true,
"match_about_blank": false,
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"http://docs.google.com/document/*",
"https://docs.google.com/document/*"
],
"js": [
"content.bundle.js"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com https://cdn.announcekit.app; object-src 'self'",
"externally_connectable": {
"matches": [
"*://*.outwrite.com/*",
"*://outwrite.com/*"
]
},
"homepage_url": "https://outwrite.com",
"offline_enabled": false,
"permissions": [
"http://*/*",
"https://*/*",
"tabs",
"notifications",
"cookies",
"clipboardRead",
"clipboardWrite",
"storage"
],
"web_accessible_resources": [
"assets.outwrite.com/*",
"assets/*",
"index.css"
],
"author": "help@outwrite.com",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}