Traviz

Find all elements with a specific style on any website

Traviz क्या है?

Traviz Governorfancypants द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find all elements with a specific style on any website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Traviz एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Traviz
Find all elements with a specific style and or selector on any website.

This tool allows you to find all elements on a page with a specific style and/or selector of your choosing. You decide which CSS property, the value for that property and/or with which selector, to search for.

You can use these operators: not equal to ( ! ), greater than ( > ), less than ( < ) and approximately equal to ( ~ ) or none for exact math.

A background color, either random or not, will be assigned to every matching element and a list with metadata and corresponding background color can be found in the container to the left.

Hover the items in the list to display a frame on the corresponding element.
  
Click an item in the list to scroll the corresponding element into view.

NOTE: Searching for specified values will not work on cross-origin linked stylesheets or local sites.

Contribute or leave suggestions at https://github.com/GovernorFancyPants/traviz-chrome-ext

Version history:

0.5.0 - Selector search, combined input fields, approximate search, random color on or off
0.4.1 - Bug fixes
0.4.0 - Implemented search for any property and value
0.1.1 - Bug fixes
0.1.0 - First release                    

एक्सटेंशन की मूल जानकारी

नाम Traviz Traviz
ID jbcpaikilmgnepceoigppdimofkkaaaj
आधिकारिक URL https://chromewebstore.google.com/detail/traviz/jbcpaikilmgnepceoigppdimofkkaaaj
विवरण Find all elements with a specific style on any website
फ़ाइल का आकार 85.43 KB
स्थापना संख्या 101
वर्तमान संस्करण 0.5
अंतिम अपडेट 2014-10-17
प्रकाशन तिथि 2014-10-17
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर Governorfancypants
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/GovernorFancyPants/traviz-chrome-ext
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Traviz",
    "description": "Find all elements with a specific style on any website",
    "version": "0.5",
    "author": "Governorfancypants",
    "icons": {
        "16": "traviz-icon-16x16.png",
        "48": "traviz-icon-48x48.png",
        "128": "traviz-icon-128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "traviz-icon-19x19.png",
            "38": "traviz-icon-38x38.png"
        },
        "default_title": "Traviz",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "traviz.js"
    ]
}