Prisc!
「プリスク!」はワンクリックでブラウザ画面スクリーンショットを撮るChrome拡張です。トリミングなど最低限の編集、およびTwitterへの画像付き投稿ができます。
Prisc!คืออะไร?
Prisc! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย otiai10 และคุณลักษณะหลักของมันคือ "「プリスク!」はワンクリックでブラウザ画面スクリーンショットを撮るChrome拡張です。トリミングなど最低限の編集、およびTwitterへの画像付き投稿ができます。"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prisc!
ดาวน์โหลดไฟล์ส่วนขยาย Prisc! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# Prisc!
ウェブページのスクショをめっちゃ簡単に撮りたいChrome拡張
# 特徴
- ワンクリックで、今見えているウェブページをキャプチャできます
- 矩形、ペン、テキスト、切り取りなど、最低限の編集ができます
- Twitterに画像付きと投稿できるようになりました
- お仕事の資料づくりに、雑コラ画像づくりに、だいかつやくしてます
# ソースコード
https://github.com/otiai10/prisc ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | gghkamaeinhfnhpempdbopannocnlbkg |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/prisc/gghkamaeinhfnhpempdbopannocnlbkg |
| คำอธิบาย | 「プリスク!」はワンクリックでブラウザ画面スクリーンショットを撮るChrome拡張です。トリミングなど最低限の編集、およびTwitterへの画像付き投稿ができます。 |
| ขนาดไฟล์ | 97.98 KB |
| จำนวนการติดตั้ง | 2,284 |
| เวอร์ชันปัจจุบัน | 0.2.5 |
| อัปเดตครั้งล่าสุด | 2015-10-26 |
| วันที่เผยแพร่ | 2015-10-25 |
| คะแนน | 4.90/5 รวมทั้งหมด 10 คะแนน |
| ผู้พัฒนา | otiai10 |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/otiai10/prisc |
| URL หน้าช่วยเหลือ | https://github.com/otiai10/prisc/issues |
| URL หน้านโยบายความเป็นส่วนตัว | https://github.com/KanCraft/kanColleWidget/blob/develop/PRIVACY_POLICY.md |
| ภาษาที่รองรับ | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Prisc!",
"version": "0.2.5",
"description": "\u300c\u30d7\u30ea\u30b9\u30af\uff01\u300d\u306f\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u30d6\u30e9\u30a6\u30b6\u753b\u9762\u30b9\u30af\u30ea\u30fc\u30f3\u30b7\u30e7\u30c3\u30c8\u3092\u64ae\u308bChrome\u62e1\u5f35\u3067\u3059\u3002\u30c8\u30ea\u30df\u30f3\u30b0\u306a\u3069\u6700\u4f4e\u9650\u306e\u7de8\u96c6\u3001\u304a\u3088\u3073Twitter\u3078\u306e\u753b\u50cf\u4ed8\u304d\u6295\u7a3f\u304c\u3067\u304d\u307e\u3059\u3002",
"permissions": [
"https:\/\/api.twitter.com\/*",
"activeTab",
"downloads"
],
"web_accessible_resources": [
"chrome_ex_oauth.html*"
],
"icons": {
"48": "asset\/img\/icon\/icon.48.png",
"128": "asset\/img\/icon\/icon.128.png"
},
"browser_action": {
"default_icon": "asset\/img\/icon\/icon.128.png"
},
"background": {
"persistent": true,
"scripts": [
"oauth_lib\/chrome_ex_oauth.js",
"oauth_lib\/chrome_ex_oauthsimple.js",
"build\/app.js"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"windows": "Ctrl+Shift+S",
"mac": "Command+Shift+S",
"chromeos": "Ctrl+Shift+S",
"linux": "Ctrl+Shift+S"
}
}
},
"options_page": "asset\/html\/app.html?view=Options"
} | |