Spongebobify
Easily Spongebobify your text by highlighting or pasting into this extension window
什么是Spongebobify?
Spongebobify是由nicholaswang2000开发的Chrome扩展程序,该扩展的主要功能是“Easily Spongebobify your text by highlighting or pasting into this extension window”。
扩展截图
下载Spongebobify扩展crx文件
下载Spongebobify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Spongebobifying text has never been easier! You can spongebobify by simply clicking on the extension popup window and then entering text. You can also spongebobify by highlighting any text you see on Chrome, and right-clicking 'Spongebobify'. This will insert the spongebobified text right into your browser for you to copy and paste anywhere. Spongebobify with ease however you like with this extension!
扩展基本信息
名称 | Spongebobify |
ID | kjdlnkopbcdbnjcgipilmabafdoofiof |
官方URL | https://chromewebstore.google.com/detail/spongebobify/kjdlnkopbcdbnjcgipilmabafdoofiof |
简介 | Easily Spongebobify your text by highlighting or pasting into this extension window |
文件大小 | 157 KB |
安装次数 | 65 |
当前版本 | 1.0.0 |
更新时间 | 2020-07-14 |
上架时间 | 2020-07-14 |
评分 | 5.00/5 共3次评分 |
开发者 | nicholaswang2000 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spongebobify", "description": "Easily Spongebobify your text by highlighting or pasting into this extension window", "version": "1.0.0", "author": "Nicholas Wang", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" }, "browser_action": { "default_icon": "images\/icon_16.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/popup.js" ] } ], "background": { "persistent": true, "scripts": [ "js\/spongebobify.js" ] }, "permissions": [ "activeTab", "contextMenus" ] } |