Grammy Wammy
Automate and scale your Instagram engagement and relationship management on the fly
Qu'est-ce que Grammy Wammy ?
Grammy Wammy est une extension Chrome développée par https://grammywammy.com, et sa fonction principale est "Automate and scale your Instagram engagement and relationship management on the fly".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Grammy Wammy
Téléchargez les fichiers d'extension Grammy Wammy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Grammy Wammy gives you everything you need to automate your conversations on Instagram. No more missing DM’s on Instagram or sorting through your inbox to find a conversation. Turn your Instagram inbox into a powerful chatbot autoresponder for lead generation and automated follow-up. Automate: Using customized Auto Responses, easily create keywords so Grammy Wammy can reply without any manual effort when someone messages you on Instagram. Optionally, create a welcome message for anyone who has never messaged you before with a time interval of your choice to drip messages out as new messages come in. This extension is an incredible time saver and will keep the conversations going for you without taking up your time.
Informations de Base sur l'Extension
Nom | Grammy Wammy |
ID | ipcdnhabbdhpiamlfnhlnbonnbhepanj |
URL Officiel | https://chromewebstore.google.com/detail/grammy-wammy/ipcdnhabbdhpiamlfnhlnbonnbhepanj |
Description | Automate and scale your Instagram engagement and relationship management on the fly |
Taille du Fichier | 3.6 MB |
Nombre d'Installations | 191 |
Version Actuelle | 1.0.4 |
Dernière Mise à Jour | 2023-12-27 |
Date de Publication | 2021-05-25 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://grammywammy.com |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://tier5.us/chrome_extension |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Grammy Wammy", "version": "1.0.4", "manifest_version": 2, "description": "Automate and scale your Instagram engagement and relationship management on the fly", "icons": { "48": "48X48.png", "128": "128X128.png" }, "browser_action": { "default_icon": "128X128.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "128X128.png" ], "background": { "scripts": [ "inject-helper\/js\/jquery-3.1.0.min.js", "background.js" ], "persistent": true }, "permissions": [ "storage", "clipboardRead", "https:\/\/www.instagram.com\/*", "debugger" ], "content_scripts": [ { "all_frames": true, "persistent": true, "js": [ "vendor.js", "profileGetter.js" ], "matches": [ "https:\/\/www.instagram.com\/" ], "run_at": "document_end" }, { "all_frames": true, "persistent": true, "js": [ "vendor.js", "ListingMessageChecker.js" ], "matches": [ "https:\/\/www.instagram.com\/direct\/inbox\/" ], "run_at": "document_end" }, { "all_frames": true, "persistent": true, "js": [ "vendor.js", "IndividualMessageChecker.js" ], "matches": [ "https:\/\/www.instagram.com\/direct\/t\/*" ], "run_at": "document_end" } ] } |