Duplicate Content
Duplicate all the content of the current page
Co to jest Duplicate Content?
Duplicate Content to rozszerzenie Chrome opracowane przez Martijn Nieuwenhuizen, a jego główną funkcją jest „Duplicate all the content of the current page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Duplicate Content
Pobierz pliki rozszerzeń Duplicate Content w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Duplicate all the content on a page to check if your design/website can handle it. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | lelfnogjdcdgannnoddmgepkajiebpdg |
| Oficjalny URL | https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg |
| Opis | Duplicate all the content of the current page |
| Rozmiar pliku | 504 KB |
| Liczba instalacji | 122 |
| Aktualna Wersja | 0.0.2 |
| Ostatnia Aktualizacja | 2017-10-06 |
| Data Publikacji | 2017-10-06 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | Martijn Nieuwenhuizen |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Duplicate Content",
"description": "Duplicate all the content of the current page",
"version": "0.0.2",
"browser_action": {
"default_icon": "128.png",
"default_title": "Duplicate text"
},
"icons": {
"19": "19.png",
"48": "48.png",
"128": "128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab",
"tabs"
]
} | |