Duplicate Content

Duplicate all the content of the current page

Τι είναι το Duplicate Content;

Το Duplicate Content είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Martijn Nieuwenhuizen, και η κύρια λειτουργία του είναι "Duplicate all the content of the current page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Duplicate Content

Λήψη αρχείων επέκτασης Duplicate Content σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Duplicate all the content on a page to check if your design/website can handle it.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Duplicate Content Duplicate Content
ID lelfnogjdcdgannnoddmgepkajiebpdg
Επίσημο URL https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg
Περιγραφή Duplicate all the content of the current page
Μέγεθος Αρχείου 504 KB
Αριθμός Εγκαταστάσεων 122
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2017-10-06
Ημερομηνία Δημοσίευσης 2017-10-06
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Martijn Nieuwenhuizen
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}