Skip to content

Instantly share code, notes, and snippets.

@dmwyatt
Created August 10, 2023 16:35
Show Gist options
  • Save dmwyatt/2d71bf7a7596e1a933ef2ef462cb0eb6 to your computer and use it in GitHub Desktop.
Save dmwyatt/2d71bf7a7596e1a933ef2ef462cb0eb6 to your computer and use it in GitHub Desktop.

Revisions

  1. dmwyatt created this gist Aug 10, 2023.
    131 changes: 131 additions & 0 deletions manifest.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,131 @@
    {
    "manifest_version": 3,
    "name": "Superpower ChatGPT",
    "version": "5.1.2",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzG6ZR+j3lpHF0XrDLIXdrk25idObfq+RK7WM+pIaQmDO2nM5Y+SZJJbFwyxjWX+3V6XOgS5v9Lpnqg46OJ/W9Q5i23Usx1MXgaJBTlEFz0XG+PYK6BElhc9itS7m6oCLknin97a533tusXmm8zW7kaDGy8vycMDY6Ffbqa3sn0PqZ8bXUlAjgO91dQcB8EtlT906hwhZjtfEYvp2hdxYkRFxfuaR1WMLkxttVXv506RXJowxq0LO3aqj83QeJoXkQF1wbzCxYO1VpVGEmYIQxIKw/csusZNZs8gwJrIWtOzhMgDNOFzXNeZl0ASgoj2M9UsZp+Dunn57VT8tQyaE6QIDAQAB",
    "description": "ChatGPT with superpowers! Sync/search history locally, create folders, export all chats, pin messages, access thousands of prompts",
    "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
    },
    "action": {
    "default_popup": "popup.html",
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
    },
    "permissions": [
    "scripting",
    "storage",
    "unlimitedStorage",
    "webRequest"
    ],
    "commands": {
    "_execute_action": {
    "suggested_key": {
    "default": "Ctrl+Shift+U",
    "mac": "Command+Shift+U"
    }
    }
    },
    "host_permissions": [
    "https://chat.openai.com/*"
    ],
    "content_scripts": [
    {
    "js": [
    "scripts/thirdParty/FileSaver.js",
    "scripts/thirdParty/jszip.js",
    "scripts/thirdParty/katex.js",
    "scripts/thirdParty/texmath.js",
    "scripts/thirdParty/markdown-it-sup.js",
    "scripts/thirdParty/markdown-it.js",
    "scripts/thirdParty/turndown.js",
    "scripts/thirdParty/highlight.js",
    "scripts/thirdParty/sortable.js",
    "scripts/thirdParty/sse.js",
    "scripts/content/contentMessageListeners.js",
    "scripts/content/rowAssistant.js",
    "scripts/content/rowUser.js",
    "scripts/content/quickAccessMenu.js",
    "scripts/content/newChatPage.js",
    "scripts/content/promptChain.js",
    "scripts/content/keyboardShortcuts.js",
    "scripts/content/modelSwitcher.js",
    "scripts/content/enableMFA.js",
    "scripts/content/customInstructions.js",
    "scripts/content/pluginsDropdown.js",
    "scripts/content/dropdown.js",
    "scripts/content/templateWordsModal.js",
    "scripts/content/shareModal.js",
    "scripts/content/feedbackModal.js",
    "scripts/content/toneList.js",
    "scripts/content/writingStyleList.js",
    "scripts/content/languageList.js",
    "scripts/content/reportReasonList.js",
    "scripts/content/categoryList.js",
    "scripts/content/sortByList.js",
    "scripts/content/api.js",
    "scripts/content/global.js",
    "scripts/content/instructions.js",
    "scripts/content/navbar.js",
    "scripts/content/modal.js",
    "scripts/content/announcement.js",
    "scripts/content/releaseNote.js",
    "scripts/content/newsletterList.js",
    "scripts/content/timestamp.js",
    "scripts/content/continue.js",
    "scripts/content/pluginStore.js",
    "scripts/content/syncBanner.js",
    "scripts/content/conversationElement.js",
    "scripts/content/folderElement.js",
    "scripts/content/clearConversations.js",
    "scripts/content/export.js",
    "scripts/content/copyAndCounter.js",
    "scripts/content/addToPromptLibrary.js",
    "scripts/content/promptLibrary.js",
    "scripts/content/promptHistory.js",
    "scripts/content/settings.js",
    "scripts/content/autoSave.js",
    "scripts/content/regenerateResponse.js",
    "scripts/content/stopGeneratingResponse.js",
    "scripts/content/conversation.js",
    "scripts/content/conversationList.js"
    ],
    "css": [
    "scripts/styles/global.css",
    "scripts/styles/katex.css"
    ],
    "matches": [
    "https://chat.openai.com/*"
    ]
    }
    ],
    "browser_specific_settings": {
    "gecko": {
    "id": "[email protected]"
    }
    },

    "background": {
    "scripts": [
    "scripts/background/initialize.js",
    "scripts/background/login.js"
    ]
    },
    "web_accessible_resources": [
    {
    "matches": [
    "https://chat.openai.com/*"
    ],
    "resources": [
    "icons/*",
    "scripts/content/*",
    "v2/*"
    ]
    }
    ]
    }