Promptly
Edit any webpage instantly
什麼是Promptly?
Promptly是由eMiner開發的Chrome擴展程式,該擴展的主要功能是“Edit any webpage instantly”。
擴展截圖
下載Promptly擴展crx文件
下載Promptly擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Edit texts from web pages without any need for programming knowledge.
擴展基本資訊
名稱 | Promptly |
ID | glmodacadmneeefbpfecajcgfcehclea |
官方網址 | https://chromewebstore.google.com/detail/promptly/glmodacadmneeefbpfecajcgfcehclea |
簡介 | Edit any webpage instantly |
檔案大小 | 72.09 KB |
安裝次數 | 36 |
目前版本 | 1.0.0 |
更新時間 | 2022-08-22 |
上架時間 | 2022-08-21 |
開發者 | eMiner |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://eminer.app/terms |
支援的語言 | 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:\/\/*\/*" ] } ] } |