CopyPasta - Scrape everything
Copyies a selected text and make it downloadable as a md or TXT file
CopyPasta - Scrape everythingคืออะไร?
CopyPasta - Scrape everything เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mtsch และคุณลักษณะหลักของมันคือ "Copyies a selected text and make it downloadable as a md or TXT file"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CopyPasta - Scrape everything
ดาวน์โหลดไฟล์ส่วนขยาย CopyPasta - Scrape everything ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will take your whole selection and translate it into a human readable Markdown file.
I wanted this extensions for technical blog posts, so i can manage them in a better format, which is trimmed on information density rather than looking pretty.
The whole point about CopyPasta is to "scrape" a webpage and get the text information in a hierachical way. This means it preserves the semantic structure of a text, while getting rid of errors when e.g. copying a web page to a word document.
Markdown can then be used with any other compatible text editor or program to enhance your notes. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | jjbfjgcafhbamebiehiapmpajoafohnf |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/copypasta-scrape-everythi/jjbfjgcafhbamebiehiapmpajoafohnf |
| คำอธิบาย | Copyies a selected text and make it downloadable as a md or TXT file |
| ขนาดไฟล์ | 99.88 KB |
| จำนวนการติดตั้ง | 23 |
| เวอร์ชันปัจจุบัน | 1.0.6 |
| อัปเดตครั้งล่าสุด | 2020-01-23 |
| วันที่เผยแพร่ | 2020-01-23 |
| ผู้พัฒนา | mtsch |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Copyies a selected text and make it downloadable as a md or TXT file",
"manifest_version": 2,
"name": "CopyPasta - Scrape everything",
"short_name": "CopyPasta",
"version": "1.0.6",
"homepage_url": "https:\/\/mtsch.dev\/projects\/copy-pasta",
"icons": {
"48": "icons\/light-theme-action.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"downloads",
"notifications"
],
"browser_action": {
"default_icon": "icons\/light-theme-action.png",
"theme_icons": [
{
"dark": "icons\/dark-theme-action.png",
"light": "icons\/light-theme-action-32.png",
"size": 32
}
],
"default_title": "CopyPasta",
"default_popup": "ui\/show-scrapes\/show-scrapes.html"
},
"commands": {
"copy-paste-selection": {
"suggested_key": {
"default": "Alt+Shift+S",
"linux": "Alt+Shift+A"
},
"description": "'Triggers extracting and transforming of selection"
},
"show-tag-element-menu": {
"suggested_key": {
"default": "Alt+Shift+Y",
"linux": "Alt+Shift+Y"
},
"description": "'Shows a menu to tag a selection."
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"css": [
"content_script.css",
"tagging-menu.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "ui\/options\/options.html",
"browser_style": true
},
"web_accessible_resources": [
"content\/*.jpg",
"content\/*.png",
"icons\/*.png"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"default_locale": "de"
} | |