Promptly
Edit any webpage instantly
What is Promptly?
Promptly is a Chrome extension developed by eMiner, and its main feature is "Edit any webpage instantly".
Extension Screenshots
Download Promptly Extension CRX File
Download Promptly extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Edit texts from web pages without any need for programming knowledge.
Extension Basic Information
Name | Promptly |
ID | glmodacadmneeefbpfecajcgfcehclea |
Official URL | https://chromewebstore.google.com/detail/promptly/glmodacadmneeefbpfecajcgfcehclea |
Description | Edit any webpage instantly |
File Size | 72.09 KB |
Installation Count | 36 |
Current Version | 1.0.0 |
Last Updated | 2022-08-22 |
Publish Date | 2022-08-21 |
Developer | eMiner |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://eminer.app/terms |
Supported Languages | en |
manifest.json | |
{ "version": "1.0.0", "manifest_version": 3, "minimum_chrome_version": "92", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "default_locale": "en", "name": "__MSG_name__", "description": "__MSG_description__", "short_name": "__MSG_slug__", "author": "__MSG_author__", "icons": { "16": "images\/16.png", "24": "images\/24.png", "32": "images\/32.png", "48": "images\/48.png", "64": "images\/64.png", "128": "images\/128.png", "256": "images\/256.png" }, "action": { "default_popup": "popup.html", "default_title": "__MSG_name__", "default_icon": { "16": "images\/16.png", "24": "images\/24.png", "32": "images\/32.png", "48": "images\/48.png", "64": "images\/64.png", "128": "images\/128.png", "256": "images\/256.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": false, "js": [ "content.js" ], "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |