Playomatic – Play Store Automatic Post Generator Plugin for WordPress (Miscellaneous)

You will Love this item!

Playomatic Automatic Post Generator Plugin

What Can You Do With This Plugin?

Playomatic Automatic Post Generator Plugin for WordPress is a breaking edge (made in 2017) Play Store To WordPress post importer plugin that is ideal for auto blogging and automatic Play Store post publishing. It can turn your website into a auto blogging or even a money making machine! The plugin uses the popular website apkmirror.com to get content.

This plugin will only get a list of FREE APPS (no paid apps will be listed).

Chances are you can make use of the site to drive traffic and generate prospects for your business.
You can import post from Play Store’s latest APKs (or popular ones).
Using this plugin, you can automatically generate posts based on a set of predefined rules. These rules can generate posts from:

  • Popular items last day
  • Popular items last week
  • Popular items last month
  • Latest APKs
  • APKs appearing on a specific page on APKMirror.com

Other plugin features:

  • get full APK characteristics: version, package name, download size, Android version, device dpi, apk md5, apk advanced features, apk upload time
  • Google Translate support – select the language in which you want to post your articles
  • Text Spinner support – automatically modify generated text, changing words with their synonyms – great SEO value!
  • customizable generated post status (published, draft, pending, private, trash)
  • automatically generate post categories or tags from marketplace items
  • manually add post categories or tags to items
  • generate post or page or any other custom post type
  • define publishing constrains: do not publish posts that do not have images, posts with short/long title/content
  • automatically generate a featured image for the post
  • enable/disable comments, pingbacks or trackbacks for the generated post
  • customize post title and content (with the included wide variety of relevant post shortcodes)
  • ‘Keyword Replacer Tool’ – It’s purpose is to define keywords that are substituted automatically with your affiliate links, anywhere they appear in the content of your site. For example, you can define a keyword ‘codecanyon’ and have it substituted by a link to http://www.codecanyon.net/?ref=user_name anywhere it appears in your site’s content.
  • ‘Random Sentence Generator Tool’ (relevant sentences – as you define them)
  • detailed plugin activity logging
  • scheduled rule runs
  • maximum/minimum title length post limitation
  • maximum/minimum content length post limitation
  • add post only if predefined required keywords found in title/content
  • add post only if predefined banned keywords are not found in the title/content
  • posibility to add predefined post custom fields
  • shortcode to add a Play Store badge pointing to a specific item

Try it out now

Testing this plugin

Plugin Requirements

  • PHP curl

Learn more about this plugin

Need support?

Just email me at [email protected] and I will respond as soon as I can.

coderevolution
coderevolution
coderevolution
coderevolution

Changelog:

Version 1.0 Release Date 2017-06-17

First version released!

Version 1.1 Release Date 2017-06-20

Added custom page grabber support
Fixed some missing data

Are you already a customer?

If you already bought this and you have tried it out, please contact me in the item’s comment section and give me feedback, so I can make it a better WordPress plugin!

WordPress 4.8 Tested!

Purchase this item now!

Like this? Give it a 5 star rating!

Disclaimer
Through this plugin you are able to grab content from Google Play that does not necessary belong to you or which are not under your control. If you grab copyrighted material without the author’s permission, the plugin’s developer does not assume any responsibility for your actions. Also, the plugin’s developer has no control over the nature, content and availability of grabbed material.

Do you like our work and want more of it? Check out this plugin bundle!

Download Playomatic – Play Store Automatic Post Generator Plugin for WordPress (Miscellaneous)

iOS – QR/BAR CODE SCANNER AND BUILDER (Full Applications)

feature_banner

Overview

Are you excited to know that how can you easily scan and build the QR/BAR Code with your iOS devices?

Here we release the QR/BAR Code Scanner and Builder application for customers. This is an amazing app to scan or build BARCode and QRCode easily with your iOS devices. You turn on the app then watch QR code or Barcode by camera and scan the code. You can also generate your QR/BAR Code instantly by using this application.

Key features

  • Scan QRCode and BARCode.
  • Generate BARCode.
  • Generate QRCode.
  • History of scanned QRCode and BARCode.

Minimum Requirements

  • Application – xcode 8,
  • Swift 3
  • ios 10

Plugin Documentation

Please click here

Changelog

07.06.2017 - ver 1.0.0

   - Initial Release

Download iOS – QR/BAR CODE SCANNER AND BUILDER (Full Applications)

VB.Net DAL Generator – Source Code (Database Abstractions)

VB.Net DAL Generator is a .net desktop application that generates VB.Net Data Access Layer for SQL Server and MS Access databases. The purpose of this application is to make software development easy. It creates VB.Net classes (one per table) that contain methods for CRUD operations. The generated code can be used in web as well as desktop apps.

If you need C# DAL Generator for SQL Server and MS Access then click here.
If you need C# DAL Generator for MySQL then click here.
If you need DAL Generator for Entity Framework (C#/VB.Net) then click here.
If you need PHP Code Generator for MySQL/MySQLi/PDO then click here.

Save $20

Click here to download the same app (without source) for just $19.

Video Demo:

Click here to view the video demo.

Features:

  • It creates VB.Net classes (one for each table).
  • Supports SQL Server and MS Access.
  • The class contains all columns of the table as properties.
  • Data types have been handled nicely.
  • Creates methods for CRUD operations.
  • Sorting has been handled.
  • Pagination has been handled (SQL Server only).
  • Primary key is automatically detected for each table.
  • Composite primary key is supported.
  • Nullable columns have been handled.
  • Identity column has been handled.
  • Timestamp column has been handled.
  • Completely indented code is generated.
  • The generated code can be used in both desktop and web applications.
  • All the following data types of SQL Server are supported:
    char, nchar, varchar, nvarchar, text, ntext, xml, decimal, numeric,
    money, smallmoney, bit, binary, image, timestamp, varbinary, date,
    datetime, datetime2, smalldatetime, datetimeoffset, time, bigint,
    int, smallint, tinyint, float, real, uniqueidentifier, sql_variant
  • Source code (written in C#) has also been provided so that to enable users to make changes according to their programming structure.

Sample Application:

A sample web application has also been provided that is using the generated code. In this application one form (for employees) has been created. This app uses the generated data access layer without modifying a single line in the generated code.

Generated Code:

  • VB.Net Class: For each table one VB.Net class is created that contains all columns of the table as properties.
  • Add Method: It is an instance method. It adds a new record to the relevant table. Nullable columns have been handled properly. If you don’t want to insert values in the nullable columns, don’t specify values for the relevant properties. Identity and timestamp columns cannot be inserted manually therefore these columns are skipped while inserting a record. Relevant property of the identity column is populated after record is inserted.
  • Update Method: It is an instance method. It updates an existing record. Identity and timestamp columns are skipped while updating a record.
  • Delete Method: It is a shared method. It deletes an existing record. It takes primary key columns values as parameters.
  • Get Method: It is a shared method. It gets an existing record (an instance of the class is created and all properties are populated). It takes primary key columns values as parameters.
  • GetAll Method: It is a shared method. It gets all records of the relevant table. You can also specify search columns. If sorting/pagination is enabled then the relevant code will also be generated.

Download VB.Net DAL Generator – Source Code (Database Abstractions)

Flexible DOT Navigation (Navigation)

Flexible DOT Navigation

Flexible DOT Navigation is able to be the right choice for you site.

Features:

  • Full Responsive layout.
  • Social icons included.
  • Font Awesome icons.
  • Code easy.
  • Beautiful Design.
  • Easy to Customize.
  • No extra attention is required.

DEMO SOURCES:

Image source:Pexels

Font:Open Sans

Font:Source Sans Pro

Icons:Font Awesome

NOTE:

No hesitation. please contact me through Codecanyon, if you have any questions regarding to menu issues or you wish to customize it somehow.

Download Flexible DOT Navigation (Navigation)

Tree List (Miscellaneous)

Tree List is an easy to integrate, configurable and modifiable nested tree list.
It is well documented and well tested with 95% code coverage.
With this component, you don’t have to worry about building another tree list again.

Features:

  • Drag and Drop for both mobile and desktop.
  • Node inline editing.
  • Selectable node.
  • Removable node.
  • All of the above is configurable.
  • Emits DOM events when tree list state changes.
  • Exposed methods to modify tree programatically.

Download Tree List (Miscellaneous)

Frequently Asked Questions (FAQ) (Prestashop)

Description

FAQ page module allows you to create separate page with common questions, categorize them, add popular questions. This module enables merchant to solve customer queries quickly by providing relevant FAQs. And FAQ module can help you set up your own beautiful and informative FAQ page with ease! FAQ page can be created for multi stores and in multi languages. It supports separate meta keywords and meta description for FAQ page.

Features

  • Super easy install.
  • Easy to customize.
  • You can add text, image and video to your faq content.
  • Drag and Drop to change positions.
  • Fully responsive 100%.
  • Multi-language ready.
  • Support multi-store.
  • Well documented.

Download Frequently Asked Questions (FAQ) (Prestashop)

iOS Birthday Card Maker / Birthday App (Objective-c / Xcode) (Full Applications)

Greetings,

if you are looking for Birthday wishes / Birthday SMS / birthday Greetings, Birthday Cards, This app is for you !

Key Features

– Manage Friends, Relatives Birthday

– Get notification

– Very Simple and Easy Code to Understand , no Complexity

– Unique Backgrounds in portrait and Landscape , Designed specially for this app

– Upload Background, Card, Photo From Gallery or Camera

– Create / Edit Your Birthday Cards

– Admob : Large Native Ads in Complient Way

– Admob : Small Native Ads in Complaint Way

– Admob : Banner Ads in Complaint Way

– Admob : Interestitial Ads in Complaint Way

– 20+ Frames

– Color Library, Fonts, Sizes

– 25+ Design Elements, Stickers

– 50 + Birthday Greetings

– Preview Card Options

– Guide / How it Works for New Users

– About Company Option

– More Apps Link for promote your company

– Save Card to App / Gallery

– Share Birthday Greetings / SMS / Cards via Social Apps

Please take a demo of our live app before downloading this source code, We will provide you source code for our live app only. so if you feels that this is the functionality what you are looking for. Go and GET THIS !!!

Live App :
https://itunes.apple.com/ke/app/birthday-cards-maker-birthday-sms/id1054337622?mt=8

if you would like to add or remove any functionality, I would love to do that for you with some extra efforts ?
For more Apps, Portfolio, Feedback, Contact Visit : www.duainfotech.in
Thanks For visiting and Using it !

Download iOS Birthday Card Maker / Birthday App (Objective-c / Xcode) (Full Applications)

Wikispecies Easy Search – Wikipedia API Based PHP Dictionary Script (Add-ons)

Collecting data on all species is hard for any one even today. That’s why Wikimedia Foundation took care of it by developing Wikispecies.org. It’s the world’s largest catelogue of all species. It is “directed at scientists, rather than at the general public”. So I thought how to create a species catelog or a dictionary using PHP and MySQL using this huge species catelog using their API. Also it does not need any database. Just PHP can create a nice dictionary in our web site. That was the base to this script.

Wikispecies Easy Search is based on Wikipedia API. It gives you to have rich dictionary data on your website or web page. As the API is based on http request based, this script uses CURL command to get information from Wikipedia to a JSON array and manipulate those data in bootstrap based fron end. The script is very easy to understand and easy to edit. Even a basic PHP user can handle this script.

Features

  • Wikipedia API based, PHP Script
  • Easy to configure and Edit
  • Single Configeration file to have basic settings and functions
  • Search inside Wikispecies database
  • View Pronounciation, Noun, Usage Noes, Synonms, Hypernyms, related terms etc.

Download Wikispecies Easy Search – Wikipedia API Based PHP Dictionary Script (Add-ons)

FIZZ Puzzle (Games)

FIZZ Puzzle is a physical puzzle game.

Made with Construct 2

demo apk download
demo version 10 level included

Features game:

HTML5
20 level included
Customizable
Local Storage
Resolution : 640×960
?Auto Resize
Support Touch
Source code included ( .CAPX )
Easy to personalize the game’s appearance
Can be used in mobile devices & websites
Works on all HTML5 browsers

Download FIZZ Puzzle (Games)

Insta Big Profile Photo – Admob Banner + Interstitial (Android)

Bonus

If you buy this item you will get my another item “DNS Changer (no root 3G/4G/WiFi) – Admob Banner + Interstitial” for free. Check out my portfolio or bottom of this page for details.

Description

??? Insta Big Profile Photo ???

The easiest and most convenient way to see big(in original size) profile photos from instagram.

See profile pictures from Instagram in original/bigger/full size.

All you need to do is to enter any instagram username and tap “Show Photo” button. And wait a few seconds, let app does its magic.

Hidden or public account, doesn’t matter. You can see any profile picture in bigger size using this app.

Demo

Download Demo Apk: https://mega.nz/#!mRB3xSxJ!wSXPccvaHRlsLgoZ3kETWELXkasqP4zCe5smR4PMBok

Features

? Easy to Reskin
? Android Studio Project
? Native Java Code
? Clean Code with Full Comments
? Offline & Online Documentation
? Admob Interstitials
? Admob Banners
? Simple and Elegant Material Design
? Only 2.7 MB app size
? Support 24/7

What you get

  • Full Android Source Code
  • Step-By-Step Offline & Online Documentation
  • Demo .apk file

Updates

-v1.0 released.

Details About Bonus

After you buy this item, contact me directly to get bonus item for free.

DNS Changer (no root 3G/4G/WiFi) – Admob Banner + Interstitial

4 Letters 1 Word Addictive Game – Admob + Leaderboards


Download Insta Big Profile Photo – Admob Banner + Interstitial (Android)

WhatScan, WhatsWeb, whatsapp Double Account with Admob Ads + Google Analytics + Firebase Integration (Android)

Demo APK : https://www.dropbox.com/s/a9hulv0oee14z4w/whatsacn_whatsweb.apk?dl=0

NOTE : This app is available form android api level 21 to 26.

Features

? APK size is less then 2 MB

? Use Double account for WhatsApp

? Set Passcode option available

? Send photo, video, audio, contacts and much more

? Download photo, video, audio, contacts and much more

? Admob Interstitial, Native and Banner ads

? Google Analytics

? Google Firebase Integration

? Easy to reskin

? Android Studio Project

? More app, FeedBack and rate this application option

? About Page Included

? First to end Documentation

? Support up to Android 5 to Android 7

Download WhatScan, WhatsWeb, whatsapp Double Account with Admob Ads + Google Analytics + Firebase Integration (Android)

Visual OpenCart Theme Editor (OpenCart)

Visual Theme Editor – Customize Your OpenCart Theme

Visual Theme Editor is a powerful tool that lets you to customize the styles of your theme directly from the front end. It’s a comprehensive editor that lets you make live changes to your store, add animations and custom CSS styles.

Most important – it works flawlessly regardless of the OpenCart theme you are using.

Features

Full Theme Customization

Visual Theme Editor allows to customize text style, background, font, animation, size, shadow, or any element on your site.

Animation Editor

Animation is becoming a vital part of contemporary design. Use this feature to give your store some motion and a more modern feel.

Compatible with All Themes

Visual Theme Editor is compatible with all themes. Don’t expect any conflict.

Custom CSS Editor

You can edit styles via a CSS Editor. A powerful feature giving you more control over the styles of your store.

Customize Styles on Desktop, Tablet, Mobile

Customize style across all screen sizes: desktop, tablet, mobile.

Support covers free installation and fixing any issues arose during the installation.

Download Visual OpenCart Theme Editor (OpenCart)

Thief Challenge – HTML5 Game (Games)

Thief Challenge is a HTML5 game where you have to challenge 4 mini-games as you attempt to unlock the security to get high score, the mini-games include lock picking, crack combination safe, hack atm machine and security camera.

The ZIP package contains the game with 1280×768 resolution that scales to fit the whole screen device, but it may not be perfectly full screen.


How To Play:
1) LOCK PICKING – Tap on each pins with the right sequence to unlock the door.
2) SAFE COMBINATION – Turning the dial left or right to unlock the safe using meter.
3) ATM MACHINE – Repeat the sequences to unlock the 4 pins.
4) SECURITY CAMERA – Connect all the cables to the right port.

Features:

  • Levels Settings (Total, Timer)
  • Complete game customization (Colors, Text, Images)
  • Basic options (Enter FullScreen, Mute Sound)
  • Share Score (Facebook, Twitter, Google)
  • High Definition (1280×768)
  • Auto-Resize (Responsive)
  • Mouse and Touch Controls
  • Run in all platforms (Mobile, PC, etc.)
  • Browser not support page
  • Mobile rotate instruction (For Landscape Only)
  • Make with CreateJS

Download Thief Challenge – HTML5 Game (Games)

Marvoro Theme for phpSound (Miscellaneous)

Description

Marvoro is a Theme for the phpSound Music Sharing Platform, featuring a modern interface, retina display ready, cross-browser compatible,mobile responsive and attractive design.

Features

  • Flexible
  • New font icons
  • Responsive design
  • Attractive design
  • Retina display ready
  • Modern interface
  • Compatibility

    Marvoro Theme is compatible with the latest version of phpSound.

    Download Marvoro Theme for phpSound (Miscellaneous)