QwipIn - Say It With Video!

Qwip your favorite moment of any video

Vad är QwipIn - Say It With Video!?

QwipIn - Say It With Video! är en Chrome-tillägg utvecklad av https://qwip.in, och dess huvudfunktion är "Qwip your favorite moment of any video".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner QwipIn - Say It With Video!-förlängningens CRX-fil

Ladda ner QwipIn - Say It With Video!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Create and share viral clips from any video on the web. 

The QwipIn Extension places a QwipIn button on qwippable videos it finds while you're browsing the web. Find a moment in a video you love and want to share? Click the QwipIn icon on the video or the extension in your chrome menu. A new tab will open with the QwipIn creation window launched and ready to go.

Where can I create qwips from?
* Youtube (and any site with embeded youtube videos)
* Vimeo
* FunnyorDie
* ESPN
* TED
* CollegeHumor
* Vidme
* Vine
* Instagram
* Twitch.tv

What are Qwips?
* Short looping videos that are up to 11 seconds in length
* Like a Vine but you create it from existing video
* Like a gif but with sound
* Super fun to create and share

Where should Qwips be shared?
* ANYWHERE
* Reddit
* Facebook
* Twitter
* Slack
* Medium
* WordPress
* SMS
* WhatsApp
* FB Messenger                    

Grundläggande Information om Tillägg

Namn QwipIn - Say It With Video! QwipIn - Say It With Video!
ID camcdldcjjkflbdejchbendhfmchojle
Officiell webbadress https://chromewebstore.google.com/detail/qwipin-say-it-with-video/camcdldcjjkflbdejchbendhfmchojle
Beskrivning Qwip your favorite moment of any video
Filstorlek 168 KB
Antal Installationer 75
Aktuell Version 1.2
Senast Uppdaterad 2016-08-02
Publiceringsdatum 2016-08-01
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare https://qwip.in
Betalningssätt free
Tilläggswebbplats https://qwip.in/extension
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QwipIn - Say It With Video!",
    "short_name": "Create and share viral clips from any video on the web",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Lets Qwip this video!",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/qwip.in\/",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "128": "icon.png",
        "16": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "webNavigation",
        "activeTab",
        "contextMenus",
        "tabs",
        "storage",
        "https:\/\/qwip.in\/*",
        "https:\/\/*.qwip.in\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/qwip.in\/?qwip-url=*",
                "https:\/\/*.qwip.in\/?qwip-url=*"
            ],
            "js": [
                "jquery.js",
                "content-script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "scan-and-add-icon.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/*",
        "css\/*"
    ],
    "description": "Qwip your favorite moment of any video",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}