Scratch Project Profile Pictures
Adds a profile picture of the user who shared the project to scratch project pages.
什麼是Scratch Project Profile Pictures?
Scratch Project Profile Pictures是由GrannyCookies開發的Chrome擴展程式,該擴展的主要功能是“Adds a profile picture of the user who shared the project to scratch project pages.”。
擴展截圖
下載Scratch Project Profile Pictures擴展crx文件
下載Scratch Project Profile Pictures擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Simply put, this just puts the sharer's picture on project pages.
That's it.
Made by Alex Bates (aka GrannyCookies) 擴展基本資訊
| 名稱 | |
| ID | ckkjcabehicmjhgndgpobhjkeenihdbk |
| 官方網址 | https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk |
| 簡介 | Adds a profile picture of the user who shared the project to scratch project pages. |
| 檔案大小 | 39.37 KB |
| 安裝次數 | 212 |
| 目前版本 | 1.0 |
| 更新時間 | 2014-12-28 |
| 上架時間 | 2014-12-28 |
| 評分 | 3.67/5 共 3 次評分 |
| 開發者 | GrannyCookies |
| 付費類型 | free |
| 擴展官網 | http://scratch.mit.edu |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Scratch Project Profile Pictures",
"version": "1.0",
"description": "Adds a profile picture of the user who shared the project to scratch project pages.",
"icons": {
"128": "logo.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/scratch.mit.edu\/projects\/*"
],
"js": [
"script.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"http:\/\/scratch.mit.edu\/*"
],
"manifest_version": 2,
"content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http:\/\/scratch.mit.edu; img-src http:\/\/scratch.mit.edu"
} | |