Happy little extension
A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.
Happy little extension là gì?
Happy little extension là một tiện ích mở rộng Chrome được phát triển bởi RoundhouseMouse, và tính năng chính của nó là "A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Happy little extension
Tải xuống các tệp mở rộng Happy little extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
"Where's that noise coming from??" Prank your friends with this extension! Install this chrome extension onto someone's computer and then input a video's ID from YouTube into the popup's input. The extension will create instances of the video in the background of the viewer's browser. 2 steps: 1. Install this chrome extension onto someone's computer 2. Set the YouTube video ID in the extension's popup. You can turn off the feature temporarily by clearing the ID from the popup's input field. Have fun!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Happy little extension |
ID | ddibaleillejnopholbacpppgokappco |
URL Chính Thức | https://chromewebstore.google.com/detail/happy-little-extension/ddibaleillejnopholbacpppgokappco |
Mô tả | A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage. |
Kích Thước Tệp | 347 KB |
Số Lần Cài Đặt | 35 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2019-08-13 |
Ngày Phát Hành | 2019-08-09 |
Nhà Phát Triển | RoundhouseMouse |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Happy little extension", "description": "A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.", "version": "0.1", "icons": { "16": ".\/client\/images\/icons\/16.png", "48": ".\/client\/images\/icons\/48.png", "128": ".\/client\/images\/icons\/128.png" }, "browser_action": { "default_icon": ".\/client\/images\/icons\/16.png", "default_title": "Happy little extension", "default_popup": "client\/popup.html" }, "background": { "scripts": [ ".\/js\/background.js" ], "persistent": true }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ ".\/css\/styles.css" ], "js": [ ".\/js\/contentScript.js" ] } ] } |