ChatGPT Custom Shortcuts Pro

Custom keyboard shortcuts for ChatGPT: Scroll up one message, copy a single message, or join all responses or code in conversation.

Τι είναι το ChatGPT Custom Shortcuts Pro;

Το ChatGPT Custom Shortcuts Pro είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tangledterrain, και η κύρια λειτουργία του είναι "Custom keyboard shortcuts for ChatGPT: Scroll up one message, copy a single message, or join all responses or code in conversation.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Custom Shortcuts Pro

Λήψη αρχείων επέκτασης ChatGPT Custom Shortcuts Pro σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Please rate this 5 ★s in the chrome store if you like it.

• Each function can be activated via customizable keyboard shortcut or by clicking the on-screen buttons. 
• Click the menu icon at the bottom-right corner of the ChatGPT window to reveal the 'join all responses' and 'join all code', share, and help buttons. 

Default keyboard shortcuts:
• Alt+A : Scroll to the top of the message, one at a time.
• Alt+C : Activate the lowest visible, native copy button. (unlike the native ctrl+shift+c shortcut, which copies the last response)
• Alt+N: Start a new conversation with the same GPTs agent (i.e. retains current agent or custom GPTs, unlike the native ctrl+shift+o shortcut.)
• Alt+G : Join & copy all responses in the conversation, excluding prompts. 
• Alt+H : Join & copy all code boxes in the conversation.

Options:
• Click the extension's icon for shortcut customization and other options.
• Reload the ChatGPT window to apply options after making changes. 
• Use checkbox in options to hide ↑ button if you prefer to use the keyboard shortcut.
• You can add custom separators between responses when using the join & copy buttons. Use \n to insert line breaks.

Changelog:
• If something breaks, be patient. I send fixes every ~30 days.
• 1/11/24: FIxed copy and new conversation shortcuts. New conversation shortcut works regardless of width or sidebar visibility. Correct separator instruction to use \n to add breaks. (v1.0.0.7)
• 12/10/23: Added some css changes to move transparent sticky header. Fixed sidebar arrow disappearance.
• 11/28/23: Fixed the alt+c. Added alt+n to start a new GPTs conversation. Removed broken alt+d feature until I have time to fix. 
• 11/4/23: Fixed the alt+c to activate the lowest visible copy button. Fixed various bugs related to ChatGPT changes in html. The question mark now sends user to release notes. The disclaimer text is now just changed to the color of the background. The scroll down function is more reliable. 
• 09/15/23: Included the material design menu icons svg so they always load. Added Alt+D shortcut to trigger the native ↓ scroll to bottom button. Added the native "share" and "?" buttons to slide out menu.
• 07/28/23 : Optimized class modifications for model name relocation to footer.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT Custom Shortcuts Pro ChatGPT Custom Shortcuts Pro
ID figoaoelbmlhipinligdgmopdakcdkcf
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-custom-shortcuts/figoaoelbmlhipinligdgmopdakcdkcf
Περιγραφή Custom keyboard shortcuts for ChatGPT: Scroll up one message, copy a single message, or join all responses or code in conversation.
Μέγεθος Αρχείου 34.82 KB
Αριθμός Εγκαταστάσεων 60
Τρέχουσα Έκδοση 1.0.0.7
Τελευταία Ενημέρωση 2024-01-12
Ημερομηνία Δημοσίευσης 2023-05-29
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής tangledterrain
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Custom Shortcuts Pro",
    "description": "Custom keyboard shortcuts for ChatGPT: Scroll up one message, copy a single message, or join all responses or code in conversation.",
    "version": "1.0.0.7",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ]
}